/* About Page Styles */

/* Intro Section */
.about-intro {
  padding: 40px 40px 60px;
}

.about-intro-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-lead {
  font-size: 20px;
  line-height: 1.7;
  color: #374151;
  text-align: center;
}

/* About Sections */
.about-section {
  padding: 80px 40px;
}

.about-section.alt-bg {
  background-color: #ffffff;
}

.about-section-container {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.section-content {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
}

.section-content p {
  margin-bottom: 20px;
}

.section-content ul,
.section-content ol {
  margin: 20px 0 20px 24px;
}

.section-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.section-content strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* Planner List */
.planner-list {
  list-style: none;
  margin-left: 0 !important;
  padding: 0;
}

.planner-list li {
  padding: 16px 20px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 12px;
}

.about-section.alt-bg .planner-list li {
  background-color: #ffffff;
}

.planner-list a {
  color: #082845;
  text-decoration: none;
}

.planner-list a:hover {
  text-decoration: underline;
}

/* Steps List */
.steps-list {
  counter-reset: step-counter;
  list-style: none;
  margin-left: 0 !important;
  padding: 0;
}

.steps-list li {
  position: relative;
  padding-left: 48px;
  margin-bottom: 20px;
  counter-increment: step-counter;
}

.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background-color: #fef3c7;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Commitment Grid */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.commitment-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.commitment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #fef3c7;
  border-radius: 8px;
  margin-bottom: 16px;
}

.commitment-icon i {
  font-size: 24px;
  color: #082845;
}

.commitment-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.commitment-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

/* CTA Section */
.about-cta {
  background-color: #082845;
  padding: 80px 40px;
  text-align: center;
}

.about-cta-container {
  max-width: 600px;
  margin: 0 auto;
}

.about-cta h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.about-cta p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background-color: #fef3c7;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.cta-button:hover {
  background-color: #fde68a;
  transform: translateY(-2px);
}

.cta-button i {
  font-size: 18px;
}

/* Active nav link */
.nav-link.active {
  color: #082845;
  font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about-intro {
    padding: 0 20px 40px;
  }

  .about-lead {
    font-size: 18px;
  }

  .about-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .commitment-card {
    padding: 24px;
  }

  .about-cta {
    padding: 60px 20px;
  }

  .about-cta h2 {
    font-size: 26px;
  }

  .about-cta p {
    font-size: 16px;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 15px;
  }
}
