.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.4rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  color: white;
}

/* Enhanced partnership intro */
.enhanced-intro {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 25px;
  padding: 4rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.enhanced-intro::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(162, 108, 54, 0.1) 0%, transparent 70%);
  transform: rotate(45deg);
}

.intro-content {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.8rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-color);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.partnership-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.principle-item {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.principle-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.principle-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.principle-item h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.principle-item p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
}




/* Enhanced benefits section */
.enhanced-benefits {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 25px;
  padding: 4rem;
  margin-bottom: 4rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.enhanced-benefits::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(64, 36, 62, 0.1) 0%, transparent 70%);
  transform: rotate(-45deg);
}

.benefits-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-color);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.enhanced-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.enhanced-benefit {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.enhanced-benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.enhanced-benefit:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.enhanced-benefit h4 {
  color: var(--accent-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.enhanced-benefit p {
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.benefit-metric {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
}

/* Enhanced CTA section */
.enhanced-cta {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  color: white;
  border-radius: 25px;
  padding: 4rem 2rem;
  margin: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.enhanced-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.enhanced-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.enhanced-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-button.primary {
  background: white;
  color: var(--accent-color);
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.cta-button.primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.cta-button.secondary:hover {
  background: white;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.cta-stat {
  text-align: center;
}

.cta-stat .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-stat .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}