.page-partnerships {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  line-height: 1.6;
}

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

.page-partnerships__section {
  padding: 60px 0;
}

.page-partnerships__section-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0; /* Brand color for titles */
}

.page-partnerships__section-title--white {
  color: #ffffff;
}

.page-partnerships__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-partnerships__text-block--white {
  color: #ffffff;
  text-align: center;
}

/* HERO Section */
.page-partnerships__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #26A9E0, #4CAF50); /* Example gradient */
  color: #ffffff;
}

.page-partnerships__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.page-partnerships__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.page-partnerships__hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  order: 2;
}

.page-partnerships__hero-section .page-partnerships__hero-image {
  order: 1;
}

.page-partnerships__main-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.page-partnerships__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-partnerships__cta-buttons--center {
  margin-top: 40px;
}

.page-partnerships__btn-primary,
.page-partnerships__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-partnerships__btn-primary {
  background: #EA7C07; /* Login color for primary CTA */
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-partnerships__btn-primary:hover {
  background: #d46c06;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.page-partnerships__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-partnerships__btn-secondary:hover {
  background: #f0f8ff;
  color: #1a7a9d;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Intro Section & other content sections */
.page-partnerships__intro-section,
.page-partnerships__eligibility-section {
  background: #f9f9f9;
}

.page-partnerships__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Benefits Section */
.page-partnerships__dark-section {
  background: #26A9E0; /* Brand primary color */
  color: #ffffff;
}

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

.page-partnerships__benefit-card,
.page-partnerships__step-card {
  background: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-partnerships__benefit-card:hover,
.page-partnerships__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.page-partnerships__card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #26A9E0; /* Brand color for card titles */
}

.page-partnerships__card-description {
  font-size: 16px;
  line-height: 1.7;
}

/* Eligibility Section */
.page-partnerships__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-partnerships__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.8;
}

.page-partnerships__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #26A9E0;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
}

/* FAQ Section */
.page-partnerships__faq-section {
  background: #f0f2f5;
  padding-bottom: 80px;
}

details.page-partnerships__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
details.page-partnerships__faq-item summary.page-partnerships__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 600;
  font-size: 18px;
  color: #333333;
}
details.page-partnerships__faq-item summary.page-partnerships__faq-question::-webkit-details-marker {
  display: none;
}
details.page-partnerships__faq-item summary.page-partnerships__faq-question:hover {
  background: #f5f5f5;
  color: #26A9E0;
}