    :root {
      --blue-dark: #1F3448;
      --blue-mid: #2A4560;
      --blue-light: #A4C6E4;
      --red: #8C261B;
      --white: #ffffff;
      --offwhite: #f7f8fa;
      --text: #243140;
      --muted: #5c6774;
      --border: rgba(31, 52, 72, 0.12);
      --shadow: 0 16px 40px rgba(31, 52, 72, 0.10);
      --radius: 18px;
      --max: 1180px;
      --header-h: 78px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .container {
      width: min(calc(100% - 2rem), var(--max));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      height: var(--header-h);
      background: rgba(31, 52, 72, 0.96);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      backdrop-filter: blur(8px);
    }

    .header-inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.25rem;
    }

    .logo-link {
      display: flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .logo-link img {
      height: 54px;
      width: auto;
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      margin-left: auto;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      color: var(--white);
      font-size: 0.98rem;
      font-weight: 600;
    }

    .desktop-nav > a.active,
.dropdown-toggle.active {
  color: var(--red);
}

.desktop-nav > a.active::after,
.dropdown-toggle.active::after {
  width: 100%;
}

    .desktop-nav > a,
.dropdown-toggle {
  position: relative;
  padding: 0.25rem 0;
  color: rgba(255,255,255,0.92);
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  transition: color 0.3s ease;
}

.desktop-nav > a::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--blue-light);
  transition: width 0.25s ease;
}

.desktop-nav > a:hover,
.dropdown-toggle:hover,
.dropdown:hover .dropdown-toggle {
  color: var(--red);
}

    .desktop-nav > a:hover::after,
    .dropdown-toggle:hover::after,
    .dropdown:hover .dropdown-toggle::after {
      width: 100%;
    }

    .dropdown {
      position: relative;      
    }

    .dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 260px;
  background: var(--blue-dark);
  color: var(--white);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
  z-index: 1001;
}

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu a {
  display: block;
  padding: 0.78rem 1rem;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  transition: color 0.25s ease, background 0.25s ease;
}

.dropdown-menu a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--red);
}

    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .header-phone {
      color: var(--white);
      font-weight: 700;
      font-size: 0.95rem;
      white-space: nowrap;
    }

    .header-phone:hover {
      color: var(--blue-light);
    }

    .header-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 0.5rem 0.9rem;
      border-radius: 999px;
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.22);
      font-size: 0.86rem;
      font-weight: 700;
      transition: 0.2s ease;
    }

    .header-btn:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.42);
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--white);
      font-size: 1.7rem;
      cursor: pointer;
      padding: 0.1rem 0.3rem;
    }

    .mobile-nav {
      display: none;
      background: var(--blue-dark);
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .mobile-nav.open {
      display: block;
    }

    .mobile-nav .container {
      padding: 0.75rem 0 1rem;
      display: grid;
      gap: 0.1rem;
    }

    .mobile-nav a,
    .mobile-nav .mobile-services-title {
      color: var(--white);
      padding: 0.82rem 0.15rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-weight: 600;
    }

    .mobile-sub-links {
      display: grid;
      padding-left: 1rem;
      background: rgba(255,255,255,0.03);
    }

    .hero {
      position: relative;
      min-height: 520px;
      display: flex;
      align-items: center;
      background:
        linear-gradient(rgba(20, 24, 28, 0.36), rgba(20, 24, 28, 0.36)),
        url("images/the-holy-bible-1483623.jpg") center center / cover no-repeat;
      color: var(--white);
      text-align: center;
    }

    .hero-inner {
      width: min(calc(100% - 2rem), 980px);
      margin: 0 auto;
      padding: 5rem 0 5.5rem;
    }

    .hero h1 {
      margin: 0 0 0.5rem;
      font-size: clamp(2.5rem, 5vw, 4.25rem);
      line-height: 1.08;
      letter-spacing: -0.03em;
      text-shadow: 0 4px 22px rgba(0,0,0,0.30);
    }

    .hero-rotator {
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-bottom: 1.5rem;
    }

    .hero-rotating-text {
  display: inline-block;
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--red);
  white-space: nowrap;
  text-shadow: none;
}

    .hero-subtext {
      max-width: 760px;
      margin: 0 auto 1.8rem;
      font-size: 1.02rem;
      color: rgba(255,255,255,0.92);
      text-shadow: 0 2px 10px rgba(0,0,0,0.30);
      margin-top: 1.5rem;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.85rem;
      margin-bottom: 1.25rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0.85rem 1.25rem;
      border-radius: 999px;
      font-weight: 700;
      transition: 0.2s ease;
      border: 2px solid transparent;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-call {
      background: var(--blue-dark);
      color: var(--white);
      border-color: rgba(255,255,255,0.18);
    }

    .btn-call:hover {
      background: var(--blue-mid);
    }

    .btn-consult {
      background: rgba(255,255,255,0.1);
      color: var(--white);
      border-color: rgba(255,255,255,0.25);
    }

    .btn-consult:hover {
      background: rgba(255,255,255,0.18);
    }

    section {
      padding: 5rem 0;
    }

    .section-heading {
      margin: 0 0 0.5rem;
      font-size: clamp(2rem, 3.2vw, 3rem);
      line-height: 1.1;
      color: var(--blue-dark);
      letter-spacing: -0.02em;
    }

    .section-line {
      width: 92px;
      height: 3px;
      background: var(--blue-light);
      margin: 0 0 1.5rem;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 2.2rem;
      align-items: center;
    }

    .about-copy p {
      margin: 0 0 1rem;
      color: var(--muted);
      font-size: 1.02rem;
    }

    .about-copy p:last-child {
      margin-bottom: 0;
    }

    .about-photo {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: #dde5ee;
      min-height: 420px;
    }

    .about-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .services-section {
      background: #f4f7fb;
    }

    .services-intro {
      max-width: 760px;
      margin-bottom: 2rem;
      color: var(--muted);
      font-size: 1rem;
      text-wrap: balance;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 1.5rem 1.35rem;
      transition: 0.2s ease;
      min-height: 100%;
    }

    .service-card:hover {
      transform: translateY(-4px);
    }

    .service-icon {
      width: 56px;
      height: 56px;
      object-fit: contain;
      margin-bottom: 1rem;
    }

    .service-card h3 {
      margin: 0 0 0.7rem;
      color: var(--blue-dark);
      font-size: 1.18rem;
      line-height: 1.2;
    }

    .service-card p {
      margin: 0 0 1rem;
      color: var(--muted);
      font-size: 0.97rem;
    }

    .service-link {
      font-weight: 700;
      color: var(--red);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }

    .why-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 1.4rem;
    }

    .why-card h3 {
      margin: 0 0 0.6rem;
      color: var(--blue-dark);
      font-size: 1.08rem;
      line-height: 1.25;
    }

    .why-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.97rem;
    }

    .cta-band {
      padding-top: 0;
    }

    .cta-box {
      background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
      color: var(--white);
      border-radius: 28px;
      padding: 2rem;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 1.25rem;
      align-items: center;
      box-shadow: var(--shadow);
    }

    .cta-box h2 {
      margin: 0 0 0.65rem;
      font-size: clamp(1.9rem, 2.7vw, 2.7rem);
      line-height: 1.1;
    }

    .cta-box p {
      margin: 0;
      color: rgba(255,255,255,0.86);
    }

    .cta-actions {
      display: flex;
      justify-content: flex-end;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .footer {
      background: var(--blue-dark);
      color: var(--white);
      padding: 2.2rem 0 1.1rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 2rem;
      align-items: start;
    }

    .footer h4 {
      margin: 0 0 0.8rem;
      font-size: 1rem;
      color: var(--blue-light);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .footer-links,
    .footer-contact {
      display: grid;
      gap: 0.42rem;
    }

    .footer-links a,
    .footer-contact span,
    .footer-contact a,
    .footer-location p {
      color: rgba(255,255,255,0.86);
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .footer-links a:hover,
    .footer-contact a:hover {
      color: var(--blue-light);
    }

    .footer-location p {
      margin: 0;
    }

    .footer-bottom {
      margin-top: 1.5rem;
      padding-top: 0.9rem;
      border-top: 1px solid rgba(255,255,255,0.12);
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      color: rgba(255,255,255,0.7);
      font-size: 0.9rem;
    }

    @media (max-width: 1060px) {
      .desktop-nav,
      .header-phone,
      .header-btn {
        display: none;
      }

      .mobile-menu-btn {
        display: inline-block;
      }

      .about-grid,
      .cta-box,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .services-grid,
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 720px) {
      :root {
        --header-h: 72px;
      }

      .logo-link img {
        height: 48px;
      }

      .hero {
        min-height: 460px;
      }

      .hero-rotator {
        height: 58px;
      }

      section {
        padding: 4rem 0;
      }

      .services-grid,
      .why-grid {
        grid-template-columns: 1fr;
      }

      .hero-buttons,
      .cta-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
      }

      .about-photo {
        min-height: 320px;
      }
    }

/* CONTACT PAGE */
.contact-simple {
  padding-top: 4.5rem;
}

.contact-page-header {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.contact-page-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-clean-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.contact-form-card,
.contact-map-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form-card {
  padding: 1.8rem;
}

.contact-form-card h3,
.contact-map-card h3 {
  margin: 0 0 0.75rem;
  color: var(--blue-dark);
  font-size: 1.25rem;
  line-height: 1.2;
}

.contact-form-intro,
.contact-map-intro,
.contact-map-details p {
  color: var(--muted);
}

.contact-form-intro {
  margin: 0 0 1.25rem;
}

.consultation-form .form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.consultation-form label {
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--blue-dark);
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(164, 198, 228, 0.22);
}

.consultation-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-submit-btn {
  margin-top: 0.4rem;
}

.contact-map-card {
  padding: 1.4rem;
}

.contact-map-intro {
  margin: 0 0 1rem;
  line-height: 1.65;
}

.contact-map-embed {
  margin-bottom: 1.2rem;
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.contact-map-details {
  margin-bottom: 1.2rem;
}

.contact-map-details p {
  margin: 0 0 1rem;
  line-height: 1.65;
}

.contact-map-details p:last-child {
  margin-bottom: 0;
}

.contact-map-details a {
  color: var(--red);
  font-weight: 700;
}

.contact-map-btn {
  width: 100%;
}

@media (max-width: 1060px) {
  .contact-clean-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .contact-simple {
    padding-top: 4rem;
  }

  .contact-form-card,
  .contact-map-card {
    padding: 1.2rem;
  }
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-alert {
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin: 0 0 1rem;
  font-size: 0.96rem;
  line-height: 1.5;
}

.form-alert-success {
  background: #eef7ee;
  border: 1px solid #bfd8bf;
  color: #234423;
}

.form-alert-error {
  background: #fbefef;
  border: 1px solid #e0bcbc;
  color: #6a1f1f;
}

.contact-form-note {
  margin: -0.35rem 0 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ABOUT PAGE */
.about-simple {
  padding-top: 4.5rem;
}

.about-simple .section-heading,
.about-simple .section-line {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.about-simple .section-line {
  margin-bottom: 2.25rem;
}

.about-page-grid {
  grid-template-columns: 0.62fr 1.38fr;
  gap: 2rem;
  align-items: start;
}

.about-page .about-photo {
  min-height: 320px;
  max-width: 360px;
}

.about-page .about-copy {
  max-width: 760px;
}

.about-lead {
  margin-top: 0;
  font-size: 1.08rem;
  color: var(--blue-dark);
  font-weight: 700;
  line-height: 1.7;
}

.about-page .about-copy p {
  max-width: 760px;
}

.about-page-actions {
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .about-page-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-photo {
    max-width: 420px;
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .about-simple {
    padding-top: 4rem;
  }

  .about-page .about-photo {
    max-width: 100%;
    min-height: 320px;
  }
}

/* SERVICE PAGES */
.service-intro {
  padding-top: 4.5rem;
  padding-bottom: 3.25rem;
}

.service-intro-inner {
  max-width: 900px;
  text-align: center;
}

.service-page-title,
.service-intro .section-line {
  margin-left: auto;
  margin-right: auto;
}

.service-page-lead {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.75;
}

.service-page-sublead {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.service-content-section {
  padding: 4.5rem 0;
}

.service-band {
  background: #f4f7fb;
}

.service-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.service-split-reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.service-copy h2,
.service-narrow h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--blue-dark);
  letter-spacing: -0.02em;
}

.service-copy p,
.service-narrow p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.service-copy p:last-child,
.service-narrow p:last-child {
  margin-bottom: 0;
}

.service-image-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dde5ee;
  min-height: 360px;
}

.service-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-narrow {
  max-width: 860px;
}

@media (max-width: 900px) {
  .service-split,
  .service-split-reverse {
    grid-template-columns: 1fr;
  }

  .service-image-card {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .service-intro {
    padding-top: 4rem;
    padding-bottom: 2.75rem;
  }

  .service-content-section {
    padding: 4rem 0;
  }

  .service-image-card {
    min-height: 260px;
  }
}

.planning-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.planning-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.35rem;
}

.planning-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--blue-dark);
}

.planning-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.estate-planning-detail {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.service-image-card-small {
  min-height: 240px;
  max-width: 360px;
  justify-self: end;
}

@media (max-width: 900px) {
  .planning-card-grid {
    grid-template-columns: 1fr;
  }

  .estate-planning-detail {
    grid-template-columns: 1fr;
  }

  .service-image-card-small {
    max-width: 100%;
    justify-self: stretch;
  }
}

/* PROBATE / TRUST ADMINISTRATION PAGE */
.admin-two-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.admin-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.4rem;
}

.admin-info-card h2 {
  margin: 0 0 0.9rem;
  font-size: 1.8rem;
  line-height: 1.15;
  color: var(--blue-dark);
}

.admin-info-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.admin-info-card p:last-child {
  margin-bottom: 0;
}

.admin-support-split {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.faq-section .section-line,
.faq-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.faq-wrap {
  max-width: 900px;
}

.faq-accordion {
  margin-top: 2rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  color: var(--blue-dark);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--red);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .admin-two-card-grid {
    grid-template-columns: 1fr;
  }

  .admin-support-split {
    grid-template-columns: 1fr;
  }
}

/* MEDICAID PAGE */
.medicaid-split {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.service-subsection-heading {
  margin-top: 2.25rem !important;
}

@media (max-width: 900px) {
  .medicaid-split {
    grid-template-columns: 1fr;
  }
}

/* JOINT DIVORCE PAGE */
.joint-divorce-split {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.joint-divorce-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.joint-divorce-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.35rem;
}

.joint-divorce-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--blue-dark);
}

.joint-divorce-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .joint-divorce-split {
    grid-template-columns: 1fr;
  }

  .joint-divorce-card-grid {
    grid-template-columns: 1fr;
  }
}