/* ============================================================
   Affirming Voices Speech Therapy LLC — Design #27 Teal + Coral
   Colors: #0d9488 (teal) #f43f5e (coral) #fff1f2 (cream)
   Text: #1c1917 / #44403c / #78716c — NO rgba()
   ============================================================ */

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

:root {
  --teal: #0d9488;
  --teal-dark: #0b7f75;
  --teal-faint: #e6f5f3;
  --coral: #f43f5e;
  --coral-dark: #e0314f;
  --coral-faint: #fde8ec;
  --cream: #fff1f2;
  --white: #ffffff;
  --text-dark: #1c1917;
  --text-mid: #44403c;
  --text-light: #78716c;
  --sage: #b7c9a8;
  --sage-dark: #8a9e7a;
  --green-dot: #22c55e;
  --gray-100: #f5f5f4;
  --gray-200: #e7e5e4;
  --gray-300: #d6d3d1;
  --gray-400: #a8a29e;
  --shadow-color: #d6d3d1;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --max-width: 1200px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--teal-dark);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-heading {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.6;
}

.accent-line {
  width: 56px;
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-sans);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px var(--shadow-color);
}

.btn-outline {
  background: transparent;
  color: var(--coral);
  border-color: var(--coral);
}

.btn-outline:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px var(--shadow-color);
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 8px var(--shadow-color);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.nav-brand-icon {
  width: 34px;
  height: 34px;
  background: var(--teal);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero — Flowing Curves --- */
.hero {
  position: relative;
  background: var(--white);
  overflow: hidden;
  padding: 160px 0 120px;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  top: -8%;
  right: -4%;
  width: 42%;
  height: 116%;
  background: var(--teal-faint);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 2% 100%);
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3%;
  width: 38%;
  height: 55%;
  background: var(--coral-faint);
  clip-path: polygon(0 18%, 100% 0, 74% 100%, 0 100%);
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
}

.hero-heading {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.hero-heading .highlight {
  color: var(--teal);
}

.hero .accent-line {
  width: 64px;
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--teal-faint) 0%, var(--coral-faint) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-illustration::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 2px dashed var(--teal);
  border-radius: var(--radius-md);
  opacity: 0.3;
}

.hero-illustration-icon {
  font-size: 6rem;
  opacity: 0.75;
}

/* --- Services — 3-Column Feature Grid --- */
.services {
  background: var(--cream);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .accent-line {
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px #c4bfba;
}

.service-card-top-bar {
  height: 5px;
  width: 100%;
}

.service-card:nth-child(1) .service-card-top-bar { background: var(--teal); }
.service-card:nth-child(2) .service-card-top-bar { background: var(--coral); }
.service-card:nth-child(3) .service-card-top-bar { background: var(--teal); }

.service-card-body {
  padding: 32px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-card:nth-child(1) .service-card-icon {
  background: var(--teal-faint);
  color: var(--teal);
}

.service-card:nth-child(2) .service-card-icon {
  background: var(--coral-faint);
  color: var(--coral);
}

.service-card:nth-child(3) .service-card-icon {
  background: var(--teal-faint);
  color: var(--teal);
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.service-card-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.service-card-features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 10px;
  line-height: 1.5;
}

.service-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--teal);
}

.service-card:nth-child(2) .service-card-features li::before {
  background: var(--coral);
}

.service-card-stat {
  border-top: 1px solid var(--gray-200);
  padding-top: 18px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.service-card-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.service-card:nth-child(2) .service-card-stat-value {
  color: var(--coral);
}

.service-card-stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* --- About — Mission Narrative --- */
.about {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.about-label-area .accent-line {
  margin-bottom: 20px;
}

.about-narrative {
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.about-narrative strong {
  color: var(--text-dark);
  font-weight: 700;
}

.about-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.about-trust-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease;
}

.about-trust-item:hover {
  transform: translateY(-4px);
}

.about-trust-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.about-trust-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 4px;
}

.about-trust-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* --- Industries — Capability Pills --- */
.industries {
  background: var(--gray-100);
}

.industries-header {
  text-align: center;
  margin-bottom: 48px;
}

.industries-header .accent-line {
  margin-left: auto;
  margin-right: auto;
}

.industries-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  background: var(--sage);
  color: var(--text-dark);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.industry-pill:hover {
  background: var(--sage-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #b0b8a0;
}

.industry-pill-dot {
  width: 10px;
  height: 10px;
  background: var(--green-dot);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Approach — Progress Steps --- */
.approach {
  background: var(--white);
}

.approach-header {
  text-align: center;
  margin-bottom: 64px;
}

.approach-header .accent-line {
  margin-left: auto;
  margin-right: auto;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}

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

.approach-step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-faint);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.approach-step:nth-child(odd) .approach-step-circle {
  background: var(--teal-faint);
  color: var(--teal);
}

.approach-step:nth-child(even) .approach-step-circle {
  background: var(--coral-faint);
  color: var(--coral);
}

.approach-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.approach-step-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 18px;
}

.approach-step-bar {
  width: 100%;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}

.approach-step-bar-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 3px;
  transition: width 1.2s ease 0.2s;
  width: 0;
}

.approach-step-bar-fill.animated {
  width: var(--progress);
}

.approach-step:nth-child(1) .approach-step-bar-fill { --progress: 25%; }
.approach-step:nth-child(2) .approach-step-bar-fill { --progress: 50%; }
.approach-step:nth-child(3) .approach-step-bar-fill { --progress: 75%; }
.approach-step:nth-child(4) .approach-step-bar-fill { --progress: 100%; }

/* --- Contact — Gradient Border Card --- */
.contact {
  background: var(--cream);
}

.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-header .accent-line {
  margin-left: auto;
  margin-right: auto;
}

.contact-card-wrapper {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  padding: 3px;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  border-radius: var(--radius-lg);
}

.contact-card {
  background: var(--white);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 44px 40px;
}

.contact-card-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-faint);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  align-self: flex-start;
  padding: 14px 40px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.25s ease;
  margin-top: 4px;
}

.form-submit:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px #e8c4ca;
}

.form-feedback {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.form-feedback.success {
  display: block;
  background: var(--teal-faint);
  color: var(--teal-dark);
  border: 1px solid var(--teal);
}

.form-feedback.error {
  display: block;
  background: var(--coral-faint);
  color: var(--coral-dark);
  border: 1px solid var(--coral);
}

/* --- CTA — Trust Badges --- */
.cta {
  background: var(--teal);
  padding: 80px 0;
}

.cta-inner {
  text-align: center;
}

.cta-heading {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--teal-faint);
  margin-bottom: 44px;
}

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--white);
  color: var(--teal);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px #06706a;
}

.cta-badge-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* --- Footer --- */
.footer {
  background: var(--text-dark);
  color: var(--gray-400);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray-400);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #33302e;
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-400);
}

.footer-address {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 8px;
  line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-heading {
    font-size: 2.6rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid .service-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
    width: 100%;
  }
  .approach-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .section-heading {
    font-size: 1.9rem;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 32px 40px;
    box-shadow: -4px 0 20px var(--shadow-color);
    transition: right 0.35s ease;
    gap: 24px;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-toggle {
    display: flex;
  }
  .hero {
    padding: 120px 0 80px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-heading {
    font-size: 2.2rem;
  }
  .hero-visual {
    order: -1;
  }
  .hero-illustration {
    max-width: 300px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-grid .service-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }
  .about-trust {
    grid-template-columns: repeat(3, 1fr);
  }
  .approach-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .cta-heading {
    font-size: 1.6rem;
  }
  .contact-card {
    padding: 28px 24px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.8rem;
  }
  .section-heading {
    font-size: 1.6rem;
  }
  .about-trust {
    grid-template-columns: 1fr;
  }
  .industries-pills {
    gap: 10px;
  }
  .industry-pill {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  .cta-badges {
    flex-direction: column;
    align-items: center;
  }
  .cta-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .contact-card-wrapper {
    margin: 0 12px;
  }
}

/* --- Privacy / Terms Doc Pages --- */
.doc-page {
  padding: 120px 0 80px;
  background: var(--white);
}

.doc-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.doc-container h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.doc-container .doc-updated {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.doc-container h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 36px 0 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.doc-container h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 28px;
}

.doc-container p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}

.doc-container ul,
.doc-container ol {
  margin: 8px 0 16px 24px;
  color: var(--text-mid);
  line-height: 1.75;
}

.doc-container li {
  margin-bottom: 6px;
}

.doc-container strong {
  color: var(--text-dark);
}

.doc-container a {
  color: var(--teal);
  text-decoration: underline;
}

.doc-container .doc-address {
  font-style: normal;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.doc-footer-nav {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--gray-200);
  margin-top: 48px;
}

.doc-footer-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--teal);
}
