.page-partnerships {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #111 (dark), so text must be light */
  background-color: #111; /* Ensure consistency with shared.css body background */
}

.page-partnerships__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-partnerships__section {
  padding: 80px 0;
  text-align: center;
}

.page-partnerships__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

.page-partnerships__section-intro {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Hero Section */
.page-partnerships__hero-section {
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.page-partnerships__hero-content {
  flex: 1;
  padding-right: 40px;
}

.page-partnerships__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-partnerships__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-partnerships__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-partnerships__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.page-partnerships__btn-primary {
  display: inline-block;
  background-color: #017439;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #017439;
}

.page-partnerships__btn-primary:hover {
  background-color: #005f2e;
  transform: translateY(-2px);
}

.page-partnerships__btn-secondary {
  display: inline-block;
  background-color: #ffffff;
  color: #017439;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  border: 2px solid #017439;
}

.page-partnerships__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #005f2e;
  transform: translateY(-2px);
}

/* Why Choose Us Section */
.page-partnerships__why-choose-us {
  background-color: #111; /* Dark background from shared.css */
  color: #ffffff;
}

.page-partnerships__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-partnerships__feature-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter card background */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-partnerships__feature-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-partnerships__feature-icon {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-partnerships__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-partnerships__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Partnership Types Section */
.page-partnerships__partnership-types {
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
}

.page-partnerships__types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-partnerships__type-card {
  background-color: rgba(0, 0, 0, 0.2); /* Darker card background */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-partnerships__type-card:hover {
  transform: translateY(-5px);
}

.page-partnerships__type-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-partnerships__type-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-partnerships__type-description {
  font-size: 1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-partnerships__type-benefits {
  list-style: none;
  padding-left: 0;
}

.page-partnerships__type-benefits li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #f0f0f0;
}

.page-partnerships__type-benefits li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFFF00; /* Highlight with yellow for checkmark */
  font-weight: bold;
}

/* Partnership Process Section */
.page-partnerships__process {
  background-color: #111; /* Dark background from shared.css */
  color: #ffffff;
}

.page-partnerships__process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-partnerships__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.page-partnerships__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #017439;
  color: #ffffff;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-partnerships__step-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-partnerships__step-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-partnerships__cta-bottom {
  margin-top: 60px;
}

/* FAQ Section */
.page-partnerships__faq {
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
}

.page-partnerships__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page-partnerships__faq-item {
  background-color: rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-partnerships__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-partnerships__faq-question:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.page-partnerships__faq-q-text {
  margin: 0;
  color: #ffffff;
}

.page-partnerships__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFFF00; /* Yellow for toggle icon */
}

.page-partnerships__faq-item.active .page-partnerships__faq-toggle {
  transform: rotate(45deg);
}

.page-partnerships__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-partnerships__faq-item.active .page-partnerships__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px;
}

.page-partnerships__faq-answer p {
  margin: 0;
  color: #f0f0f0;
}

/* Final CTA Section */
.page-partnerships__final-cta {
  background-color: #111; /* Dark background from shared.css */
  color: #ffffff;
  padding: 80px 0 100px 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-partnerships__hero-content {
    padding-right: 20px;
  }
  .page-partnerships__hero-title {
    font-size: 2.8em;
  }
  .page-partnerships__hero-description {
    font-size: 1.1em;
  }
  .page-partnerships__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-partnerships {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-partnerships__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important; /* Ensure padding for mobile */
  }
  .page-partnerships__hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .page-partnerships__hero-title {
    font-size: 2.2em;
  }
  .page-partnerships__hero-description {
    font-size: 1em;
  }
  .page-partnerships__section {
    padding: 60px 0;
  }
  .page-partnerships__section-title {
    font-size: 1.8em;
  }
  .page-partnerships__section-intro {
    font-size: 0.95em;
  }

  /* Image responsive */
  .page-partnerships img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Container responsive */
  .page-partnerships__section,
  .page-partnerships__container,
  .page-partnerships__hero-image-wrapper,
  .page-partnerships__feature-card,
  .page-partnerships__type-card,
  .page-partnerships__step-item,
  .page-partnerships__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button responsive */
  .page-partnerships__btn-primary,
  .page-partnerships__btn-secondary,
  .page-partnerships a[class*="button"],
  .page-partnerships a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px; /* Add space between stacked buttons */
  }

  .page-partnerships__cta-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .page-partnerships__cta-bottom a {
    width: 100%;
  }

  .page-partnerships__features-grid,
  .page-partnerships__types-grid,
  .page-partnerships__process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-partnerships__faq-list {
    padding: 0 15px;
  }
  .page-partnerships__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-partnerships__faq-answer {
    padding: 0 15px;
  }
  .page-partnerships__faq-item.active .page-partnerships__faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-partnerships__hero-title {
    font-size: 1.8em;
  }
  .page-partnerships__section-title {
    font-size: 1.5em;
  }
  .page-partnerships__btn-primary,
  .page-partnerships__btn-secondary {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-partnerships__feature-title,
  .page-partnerships__type-title,
  .page-partnerships__step-title {
    font-size: 1.3em;
  }
}