* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #0066ff;
  --dark-blue: #0052cc;
  --light-blue: #e6f0ff;
  --background: #ffffff;
  --background-alt: #f8f9fa;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-muted: #999999;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

  /* Typography */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8) !important;
  transition: all 0.3s ease;
  z-index: 999;
  padding: 0px 0 !important;
  box-shadow: none;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.containerl {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Hero Section */
.hero-section {
  margin-top: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e6f0ff 100%);
  padding: 80px 0 60px;
}

.hero-content {
  max-width: 900px;
}

.badge {
  display: inline-block !important;
  padding: 6px 16px !important;
  background-color: var(--light-blue) !important;
  color: var(--primary-blue) !important;
  border-radius: 20px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 24px !important;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

/* Key Metrics */
.key-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px 0;
  border-top: 2px solid var(--border-color);
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.metric-item.highlight .metric-icon {
  background-color: var(--primary-blue);
  color: white;
}

.metric-item.highlight .metric-value {
  color: var(--primary-blue);
}

.metric-icon {
  width: 48px;
  height: 48px;
  background-color: var(--light-blue);
  color: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.metric-details {
  display: flex;
  flex-direction: column;
}

.metric-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.metric-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Content Section */
.content-section {
  padding: 80px 0;
  background-color: var(--background);
}

.section-header {
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
  padding-left: 24px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 32px;
  background-color: var(--primary-blue);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.content-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lead-text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 400;
}

.content-main p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-box {
  background-color: var(--light-blue);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.stat-box:hover {
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Problem Section */
.problem-section {
  padding: 80px 0;
  background-color: var(--background-alt);
}

.problem-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.challenge-card {
  background-color: var(--background);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.challenge-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary-blue);
}

.challenge-icon {
  width: 64px;
  height: 64px;
  background-color: var(--light-blue);
  color: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.challenge-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.challenge-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.problem-summary {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--background);
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-blue);
}

/* Solution Section */
.solution-section {
  padding: 80px 0;
  background-color: var(--background);
}

.solution-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-card {
  background-color: var(--background-alt);
  padding: 36px;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary-blue);
  background-color: var(--background);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background-color: var(--primary-blue);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.solution-summary {
  background-color: var(--light-blue);
  padding: 40px;
  border-radius: 16px;
  border-left: 4px solid var(--primary-blue);
}

.solution-summary p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-primary);
}

/* Impact Section */
.impact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--background-alt) 0%, var(--light-blue) 100%);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.impact-card {
  background-color: var(--background);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.impact-card.highlight {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  border-color: var(--primary-blue);
}

.impact-card.highlight h3,
.impact-card.highlight p {
  color: white;
}

.impact-card.highlight .impact-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.impact-icon {
  width: 72px;
  height: 72px;
  background-color: var(--light-blue);
  color: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.impact-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.impact-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.impact-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-from,
.stat-to {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.stat-arrow {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.impact-summary {
  background-color: var(--background);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.impact-conclusion {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-primary);
  text-align: center;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  padding: 16px 48px;
  background-color: white;
  color: var(--primary-blue);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 30px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .challenge-grid,
  .solution-features {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .key-metrics {
    flex-direction: column;
    gap: 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .content-section,
  .problem-section,
  .solution-section,
  .impact-section {
    padding: 60px 0;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .challenge-card,
  .feature-card,
  .impact-card {
    padding: 24px;
  }

  .cta-button {
    padding: 14px 32px;
    font-size: 15px;
  }
}
