.page-partnership {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Explicitly set for clarity, though shared.css might handle body */
}

/* Fixed Header Offset - Apply to main content container or first section */
.page-partnership__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #017439, #FFFFFF); /* Brand colors gradient */
  color: #ffffff; /* White text on gradient background */
  text-align: center;
  padding-bottom: 60px;
}

.page-partnership__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-partnership__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-partnership__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-partnership__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-partnership__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff; /* Ensure white text on gradient */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  font-weight: bold;
}

.page-partnership__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #ffffff; /* Ensure white text on gradient */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-partnership__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #C30808; /* Register/Login button color */
  color: #FFFF00; /* Register/Login font color */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-partnership__cta-button:hover {
  background: #a30606; /* Darker red on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-partnership__cta-button--secondary {
  background: #017439; /* Primary color for secondary CTA */
  color: #ffffff;
}

.page-partnership__cta-button--secondary:hover {
  background: #005f2f; /* Darker green on hover */
}

/* General Section Styling */
.page-partnership__section {
  padding: 80px 0;
  text-align: center;
}

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

.page-partnership__section-title {
  font-size: 2.5em;
  margin-bottom: 25px;
  color: #017439; /* Primary color for titles */
  font-weight: bold;
}

.page-partnership__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

/* Why Partner Section */
.page-partnership__why-partner-section {
  background-color: #f9f9f9;
}

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

.page-partnership__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 450px; /* Ensure cards have similar height */
  display: flex;
  flex-direction: column;
}

.page-partnership__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}