/* ==========================================================================
   RDW Helpline - Calm Ocean Style #1 + Classic Multi-Page Architecture #1
   ========================================================================== */

/* --- Google Fonts loaded via <link> in HTML --- */

/* === CSS Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #4A90A4;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #3a7a8e;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #2C3E50;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.875rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1rem;
}

/* === Skip Link === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: #4A90A4;
  color: #fff;
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* === Container === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 900px;
}

/* === Header === */
.site-header {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(74,144,164,0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(74,144,164,0.06);
}

.header-top {
  background: #4A90A4;
  color: #fff;
  padding: 0.4rem 0;
  font-size: 0.875rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.header-top a {
  color: #fff;
  font-weight: 600;
}

.header-top a:hover {
  color: #F0F7F4;
}

.header-main {
  padding: 0.75rem 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4A90A4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo:hover {
  color: #3a7a8e;
}

.site-logo span {
  font-weight: 300;
  color: #7BC4C4;
  font-size: 0.85rem;
  display: block;
}

/* === Navigation === */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  color: #2C3E50;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: #F0F7F4;
  color: #4A90A4;
}

.nav-cta {
  background: #4A90A4 !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #3a7a8e !important;
  color: #fff !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #2C3E50;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,62,80,0.72) 0%, rgba(74,144,164,0.55) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 3rem 0;
}

.hero__title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero__subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  gap: 0.5rem;
}

.btn--primary {
  background: #4A90A4;
  color: #fff;
}

.btn--primary:hover {
  background: #3a7a8e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(74,144,164,0.35);
}

.btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn--secondary:hover {
  background: #fff;
  color: #4A90A4;
}

.btn--outline {
  background: transparent;
  color: #4A90A4;
  border: 2px solid #4A90A4;
}

.btn--outline:hover {
  background: #4A90A4;
  color: #fff;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* === Section Styling === */
.section {
  padding: 4.5rem 0;
}

.section--alt {
  background: #F8FBFC;
}

.section--accent {
  background: #F0F7F4;
}

.section--ocean {
  background: linear-gradient(135deg, #4A90A4, #7BC4C4);
  color: #fff;
}

.section--ocean h2,
.section--ocean h3,
.section--ocean p {
  color: #fff;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section__header h2 {
  position: relative;
  padding-bottom: 1rem;
}

.section__header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4A90A4, #7BC4C4);
  border-radius: 3px;
}

.section__header p {
  color: #5a6c7d;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* === Trust Bar === */
.trust-bar {
  background: #F0F7F4;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(74,144,164,0.1);
}

.trust-bar__items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: #4A90A4;
  font-size: 0.95rem;
}

.trust-bar__icon {
  font-size: 1.5rem;
}

/* === Cards === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(74,144,164,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(74,144,164,0.08);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(74,144,164,0.15);
}

.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card__body {
  padding: 1.5rem;
}

.card__title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2C3E50;
}

.card__text {
  color: #5a6c7d;
  font-size: 0.95rem;
  line-height: 1.6;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-weight: 600;
  color: #4A90A4;
}

.card__link:hover {
  gap: 0.6rem;
}

/* === Breadcrumbs === */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #5a6c7d;
  background: #F8FBFC;
  border-bottom: 1px solid rgba(74,144,164,0.08);
}

.breadcrumbs a {
  color: #4A90A4;
}

.breadcrumbs span {
  margin: 0 0.4rem;
  color: #aab;
}

/* === Content Layout (inner pages with sidebar) === */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.content-main {
  min-width: 0;
}

/* === Sidebar === */
.sidebar {
  position: sticky;
  top: 120px;
}

.sidebar__widget {
  background: #F8FBFC;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(74,144,164,0.1);
}

.sidebar__title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #4A90A4;
  color: #2C3E50;
}

.sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar__links a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  color: #2C3E50;
  font-size: 0.925rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.sidebar__links a:hover,
.sidebar__links a.active {
  background: #F0F7F4;
  color: #4A90A4;
}

.sidebar__cta {
  background: linear-gradient(135deg, #4A90A4, #7BC4C4);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  color: #fff;
}

.sidebar__cta h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.sidebar__cta p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.sidebar__cta .btn {
  width: 100%;
  background: #fff;
  color: #4A90A4;
  font-weight: 700;
}

.sidebar__cta .btn:hover {
  background: #F0F7F4;
}

/* === Feature Grid === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(74,144,164,0.06);
  transition: transform 0.3s ease;
  border: 1px solid rgba(74,144,164,0.06);
}

.feature-item:hover {
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: #5a6c7d;
  font-size: 0.925rem;
}

/* === Stats Bar === */
.stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #4A90A4;
  display: block;
}

.stat-label {
  font-size: 0.925rem;
  color: #5a6c7d;
  margin-top: 0.25rem;
}

/* === Testimonials === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(74,144,164,0.08);
  border-left: 4px solid #7BC4C4;
  position: relative;
}

.testimonial__quote {
  font-style: italic;
  color: #2C3E50;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 0.975rem;
}

.testimonial__quote::before {
  content: '\201C';
  font-size: 3rem;
  color: #7BC4C4;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial__author {
  font-weight: 600;
  color: #4A90A4;
  font-size: 0.925rem;
}

.testimonial__program {
  font-size: 0.85rem;
  color: #5a6c7d;
}

/* === Gallery / Image Grid === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(74,144,164,0.15);
}

/* === FAQ Accordion === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(74,144,164,0.12);
  margin-bottom: 0.5rem;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #2C3E50;
  text-align: left;
  position: relative;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.4;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #4A90A4;
  transition: transform 0.3s ease;
  font-weight: 300;
}

.faq-question.active::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer__inner {
  padding: 0 0 1.25rem 0;
  color: #5a6c7d;
  line-height: 1.7;
}

/* === Blog Cards === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(74,144,164,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(74,144,164,0.06);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(74,144,164,0.15);
}

.blog-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__category {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4A90A4;
  background: #F0F7F4;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-card__excerpt {
  color: #5a6c7d;
  font-size: 0.925rem;
  line-height: 1.6;
}

.blog-card__meta {
  font-size: 0.825rem;
  color: #8a9bac;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #eef3f6;
}

/* === Process Steps === */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step-counter;
}

.step {
  text-align: center;
  position: relative;
  counter-increment: step-counter;
}

.step::before {
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4A90A4, #7BC4C4);
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  font-family: 'Lato', sans-serif;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: #5a6c7d;
  font-size: 0.925rem;
}

/* === Insurance Grid === */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.insurance-item {
  background: #fff;
  border: 1px solid rgba(74,144,164,0.1);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  text-align: center;
  font-weight: 600;
  color: #2C3E50;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.insurance-item:hover {
  border-color: #4A90A4;
  box-shadow: 0 4px 12px rgba(74,144,164,0.1);
}

/* === Contact Info Grid === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(74,144,164,0.08);
  border: 1px solid rgba(74,144,164,0.06);
}

.contact-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  font-weight: 600;
  font-size: 1.05rem;
}

/* === Map === */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(74,144,164,0.1);
  margin: 2rem 0;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* === CTA Section === */
.cta-section {
  background: linear-gradient(135deg, #4A90A4, #7BC4C4);
  padding: 4rem 0;
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn--primary {
  background: #fff;
  color: #4A90A4;
}

.cta-section .btn--primary:hover {
  background: #F0F7F4;
  transform: translateY(-2px);
}

.cta-phone {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  display: block;
  margin-top: 1rem;
}

.cta-phone a {
  color: #fff;
}

.cta-phone a:hover {
  color: #F0F7F4;
}

/* === Footer === */
.site-footer {
  background: #2C3E50;
  color: #c8d6df;
  padding-top: 3.5rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-col h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #7BC4C4;
}

.footer-col p,
.footer-col li {
  font-size: 0.925rem;
  line-height: 1.8;
  color: #a0b4c4;
}

.footer-col a {
  color: #a0b4c4;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col a:hover {
  color: #7BC4C4;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-contact-icon {
  font-size: 1.1rem;
  margin-top: 0.15rem;
  color: #7BC4C4;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #7a8d9e;
}

.footer-bottom a {
  color: #7BC4C4;
}

/* === Privacy Page === */
.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.4rem;
  color: #5a6c7d;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-top: 1px solid rgba(74,144,164,0.1);
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero {
    min-height: 400px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .trust-bar__items {
    flex-direction: column;
    gap: 1rem;
  }

  .stats {
    gap: 2rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .header-top .container {
    justify-content: center;
    text-align: center;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero__title {
    font-size: 1.625rem;
  }

  .section__header h2 {
    font-size: 1.375rem;
  }

  .btn--lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

/* === Utility Classes === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* === Wave Divider === */
.wave-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* === Schedule Table === */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(74,144,164,0.06);
}

.schedule-table th {
  background: #4A90A4;
  color: #fff;
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-weight: 600;
}

.schedule-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid #eef3f6;
  color: #5a6c7d;
}

.schedule-table tr:nth-child(even) {
  background: #F8FBFC;
}

/* === List Styles === */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  color: #5a6c7d;
}

.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #7BC4C4;
  font-weight: 700;
  font-size: 1.1rem;
}

/* === Blog Featured Article === */
.featured-article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.featured-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(74,144,164,0.12);
}

.featured-article-content h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.featured-article-content h2 a {
  color: #2C3E50;
}

.featured-article-content h2 a:hover {
  color: #4A90A4;
}

.featured-article-content p {
  color: #5a6c7d;
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* === Blog Category Tags === */
.blog-category {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4A90A4;
  background: #F0F7F4;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-category--addiction { background: #E8F4F8; color: #3a7a8e; }
.blog-category--recovery { background: #E6F7F0; color: #2d8a5e; }
.blog-category--family { background: #FFF3E6; color: #c27a1a; }
.blog-category--mental { background: #EDE7F6; color: #6a42a0; }
.blog-category--news { background: #E3F2FD; color: #1565c0; }

/* === Blog Meta === */
.blog-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: #8a9bac;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.blog-date,
.blog-author {
  display: inline-flex;
  align-items: center;
}

/* === Blog Article (full) === */
.blog-article {
  max-width: 800px;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(74,144,164,0.1);
}

.blog-article:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.blog-article-header {
  margin-bottom: 1.5rem;
}

.blog-article-header h2 {
  margin-top: 0.5rem;
}

.blog-article-body {
  line-height: 1.8;
}

.blog-article-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(74,144,164,0.1);
}

.blog-article h3 {
  color: #4A90A4;
  margin-top: 2rem;
}

.blog-article p {
  color: #5a6c7d;
}

.blog-article ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.blog-article li {
  margin-bottom: 0.5rem;
  color: #5a6c7d;
}

/* === CTA Subtext === */
.cta-subtext {
  font-size: 0.925rem;
  opacity: 0.85;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* === Blog Responsive === */
@media (max-width: 768px) {
  .featured-article-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .featured-article-content h2 {
    font-size: 1.375rem;
  }

  .blog-meta {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* === Program Detail === */
.program-section {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(74,144,164,0.08);
}

.program-section:last-child {
  border-bottom: none;
}

.program-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.program-icon {
  font-size: 2.5rem;
  color: #4A90A4;
  flex-shrink: 0;
}

/* === Team Grid === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(74,144,164,0.08);
}

.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: #4A90A4;
  font-weight: 600;
  font-size: 0.925rem;
  margin-bottom: 0.5rem;
}

.team-card .credentials {
  color: #5a6c7d;
  font-size: 0.85rem;
}

.team-card p {
  color: #5a6c7d;
  font-size: 0.925rem;
  margin-top: 0.75rem;
}

/* === Comparison Table === */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(74,144,164,0.06);
}

.comparison-table th {
  background: #4A90A4;
  color: #fff;
  padding: 0.875rem 1.25rem;
  text-align: center;
  font-weight: 600;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid #eef3f6;
  text-align: center;
  color: #5a6c7d;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #2C3E50;
}

.comparison-table tr:nth-child(even) {
  background: #F8FBFC;
}
