@font-face {
        font-family: "Poppins", Sans-serif;
        src: url("../fonts/poppins/poppins-v24-latin-300.woff2") format("woff2");
        font-weight: 500;
        font-style: normal;
        font-display: swap;
      }

      @font-face {
        font-family: "Poppins", Sans-serif;
        src: url("../fonts/poppins/poppins-v24-latin-regular.woff2") format("woff2");
        font-weight: 500;
        font-style: normal;
        font-display: swap;
      }

      @font-face {
        font-family: "Poppins", Sans-serif;
        src: url("../fonts/poppins/poppins-v24-latin-500.woff2") format("woff2");
        font-weight: 500;
        font-style: normal;
        font-display: swap;
      }

      @font-face {
        font-family: "Poppins", Sans-serif;
        src: url("../fonts/poppins/poppins-v24-latin-600.woff2") format("woff2");
        font-weight: 600;
        font-style: normal;
        font-display: swap;
      }
      :root {
        --header-text: #0f2337;
        --header-border: #edeeef;
        --header-border-soft: #eef2f5;
        --header-overlay: #6686a3;
        --header-bg: #ffffff;
        --header-hover: rgba(15, 35, 55, 0.06);
        --header-shadow: 0 10px 32px rgba(15, 35, 55, 0.08);
        --header-font: "Poppins", "Avenir Next", "Segoe UI", sans-serif;
        --hero-bg: #f7f9fb;
        --hero-text: #11273d;
        --hero-muted: #557691;
        --hero-accent: #5f7f9f;
        --hero-panel: #0b1f33;
        --hero-white: #ffffff;
        --hero-shadow: 0 22px 38px rgba(16, 38, 59, 0.08);
        --hero-font: "Poppins", "Avenir Next", "Segoe UI", sans-serif;
        --hero-featured-shell: 1360px;
        --hero-featured-pad: 24px;
      }

      *,
      *::before,
      *::after {
        box-sizing: border-box;
      }

      html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
      }

      body {
        margin: 0;
        font-family: var(--header-font);
        color: var(--header-text);
        background: #fff;
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      button {
        font: inherit;
      }

      .site-header {
        position: relative;
        width: 100%;
        background: var(--header-bg);
        border-bottom: 1px solid var(--header-border);
      }

      .site-header__container {
        width: min(100%, 1360px);
        margin: 0 auto;
        padding: 0 24px;
      }

      .site-header__brand {
        display: inline-flex;
        align-items: center;
      }

      .site-header__logo {
        display: block;
        width: 80px;
        height: auto;
      }

      .site-header__mobile-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        background: #fff;
      }

      .site-header__mobile-bar .site-header__logo {
        width: 45px;
      }

      .site-header__menu-toggle,
      .site-header__menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        padding: 0;
        background: transparent;
        color: var(--header-text);
        cursor: pointer;
      }

      .site-header__menu-toggle {
        width: 30px;
        height: 30px;
        gap: 3px;
        flex-direction: column;
      }

      .site-header__menu-toggle span {
        display: block;
        width: 20px;
        height: 3px;
        border-radius: 999px;
        background: currentColor;
      }

      .site-header__mobile-overlay {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 50;
        background: var(--header-overlay);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 260ms ease,
          opacity 220ms ease,
          transform 220ms ease,
          visibility 220ms ease;
      }

      .site-header__mobile-overlay.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        max-height: 560px;
      }

      .site-header__mobile-overlay-inner {
        display: flex;
        flex-direction: column;
      }

      .site-header__mobile-overlay-top {
        display: none;
      }

      .site-header__mobile-nav {
        padding: 14px 0 18px;
      }

      .site-header__mobile-nav-list {
        list-style: none;
        margin: 0;
        padding: 0 16px;
      }

      .site-header__mobile-nav-item {
        display: flex;
        align-items: center;
        gap: 14px;
        margin: 0;
      }

      .site-header__mobile-nav-item--submenu {
        display: block;
      }

      .site-header__mobile-nav-head {
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .site-header__mobile-submenu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #fff;
        cursor: pointer;
      }

      .site-header__mobile-nav-item + .site-header__mobile-nav-item {
        margin-top: 16px;
      }

      .site-header__mobile-link {
        font-size: 20px;
        line-height: 1.15;
        font-weight: 500;
        letter-spacing: -0.02em;
        color: #fff;
      }

      .site-header__mobile-indicator {
        width: 0;
        height: 0;
        margin-top: 3px;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 9px solid #fff;
        transition: transform 180ms ease;
      }

      .site-header__mobile-nav-item--submenu.is-open .site-header__mobile-indicator {
        transform: rotate(180deg);
      }

      .site-header__mobile-submenu {
        max-height: 0;
        overflow: hidden;
        padding-left: 18px;
        opacity: 0;
        transition: max-height 220ms ease, opacity 180ms ease, margin-top 180ms ease;
      }

      .site-header__mobile-nav-item--submenu.is-open .site-header__mobile-submenu {
        max-height: 80px;
        margin-top: 12px;
        opacity: 1;
      }

      .site-header__mobile-sublink {
        display: inline-flex;
        font-size: 16px;
        line-height: 1.2;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.88);
      }

      .site-header__desktop {
        display: none;
      }

      .hero {
        color: var(--hero-text);
        font-family: var(--hero-font);
      }

      .hero__surface {
        overflow: visible;
      }

      .hero__container {
        margin: 0 auto;
        width: min(100%, 1600px);
      }

      .hero__grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
          "visual"
          "temos"
          "featured"
          "content";
        padding: 0 0 40px;
      }

      .hero__visual {
        position: relative;
        z-index: 1;
        grid-area: visual;
        background: #fff;
        overflow: hidden;
      }

      .hero__doctors {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        min-height: 286px;
        max-width: 780px;
        margin: 0 auto;
        padding: 20px 14px 0;
      }

      .hero__doctor-composite {
        display: block;
        width: min(84vw, 330px);
        height: auto;
        max-width: 100%;
      }

      .hero__temos-card,
      .hero__featured {
        background: var(--hero-panel);
        position: relative;
        z-index: 2;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
      }

      .hero__temos-card {
        grid-area: temos;
        border-top-left-radius: 34px;
        border-top-right-radius: 34px;
        margin-top: -1px;
      }

      .hero__temos {
        width: min(100%, 1600px);
        margin: 0 auto;
        padding: 18px 14px 14px;
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .hero__temos-badge {
        width: 72px;
        height: auto;
        flex: 0 0 auto;
      }

      .hero__temos-copy {
        margin: 0;
        color: rgba(255, 255, 255, 0.96);
        font-size: 11px;
      }

      .hero__temos-copy span {
        color: #8ec2d0;
      }

      .hero__temos-copy a {
        color: inherit;
        text-decoration-thickness: 1px;
        text-underline-offset: 4px;
      }

      .hero__featured {
        grid-area: featured;
        padding: 2px 0 18px;
      }

      .hero__featured-inner {
        width: min(100%, var(--hero-featured-shell));
        margin: 0 auto;
      }

      .hero__featured-title {
        margin: 0;
        padding-left: var(--hero-featured-pad);
        padding-right: var(--hero-featured-pad);
        padding-top: 10px;
        text-align: center;
        color: var(--hero-white);
        font-size: 14px;
        line-height: 1.15;
      }

      .hero__featured-marquee {
        position: relative;
        display: flex;
        overflow: hidden;
        margin-top: 14px;
        width: min(100%, var(--hero-featured-shell));
        margin-left: auto;
        margin-right: auto;
      }

      .hero__featured-marquee::before,
      .hero__featured-marquee::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 28px;
        z-index: 1;
      }

      .hero__featured-marquee::before {
        left: 0;
        background: linear-gradient(90deg, var(--hero-panel) 0%, rgba(15, 38, 59, 0) 100%);
      }

      .hero__featured-marquee::after {
        right: 0;
        background: linear-gradient(270deg, var(--hero-panel) 0%, rgba(15, 38, 59, 0) 100%);
      }

      .hero__featured-marquee-track {
        display: flex;
        width: max-content;
        animation: hero-logo-scroll 30s linear infinite;
      }

      .hero__featured-logos {
        display: flex;
        align-items: center;
        gap: 34px;
        padding: 0 14px;
        flex: 0 0 auto;
      }

      .hero__featured-logos img {
        display: block;
        height: 18px;
        width: auto;
        max-width: none;
      }

      .hero__content {
        grid-area: content;
      }

      .hero__title {
        margin: 0;
        font-size: 28px;
        line-height: 1.15;
      }

      .hero__title span {
        color: var(--hero-muted);
        font-weight: 600;
      }

      .hero__title strong {
        color: var(--hero-text);
        font-weight: 600;
      }

      .hero__benefits {
        list-style: none;
        margin: 22px 0 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
        max-width: 720px;
      }

      .hero__benefit {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        line-height: 1.2;
        letter-spacing: -0.03em;
      }

      .hero__benefit-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--hero-accent);
        color: var(--hero-white);
        flex: 0 0 auto;
      }

      .hero__benefit-icon svg {
        width: 9px;
        height: 9px;
      }

      .hero__benefit--desktop-only {
        display: none;
      }

      .hero__cta {
        margin-top: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        width: fit-content;
        max-width: 100%;
        min-width: 220px;
        min-height: 56px;
        padding: 14px 24px;
        border-bottom-left-radius: 18px;
        border-top-right-radius: 18px;
        background: var(--hero-panel);
        color: var(--hero-white);
        font-size: 14px;
        line-height: 1;
        letter-spacing: -0.03em;
        box-shadow: var(--hero-shadow);
        transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
      }

      .hero__cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 28px 40px rgba(16, 38, 59, 0.12);
      }

      .hero__cta-icon {
        width: 18px;
        height: 18px;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .hero__cta-icon svg {
        width: 100%;
        height: 100%;
      }

      @media (max-width: 1023.98px) {
        .hero {
          overflow-x: hidden;
        }

        .hero__surface,
        .hero__container,
        .hero__grid,
        .hero__visual {
          width: 100%;
        }

        .hero__doctors {
          position: static;
          display: flex;
          justify-content: center;
          align-items: flex-end;
          min-height: 268px;
          padding: 16px 0 0;
          overflow: hidden;
          width: 100%;
        }

        .hero__doctor-composite {
          position: static;
          transform: none;
          width: min(88vw, 250px);
          max-width: calc(100vw - 28px);
          margin: 0 auto;
          object-fit: contain;
          object-position: center bottom;
        }

        .hero__temos-card {
          border-top-left-radius: 34px;
          border-top-right-radius: 34px;
        }
      }

      @keyframes hero-logo-scroll {
        from {
          transform: translateX(0);
        }

        to {
          transform: translateX(-50%);
        }
      }

      @media (prefers-reduced-motion: reduce) {
        .hero__featured-marquee-track {
          animation: none;
        }
      }

      @media (max-width: 768px) {
        .hero__cta {
          display: block;
          width: 100%;
          min-width: 0;
          box-sizing: border-box;
          text-align: center;
        }
      }

      @media (min-width: 1024px) {
        .site-header {
          border-top: none;
        }

        .site-header__mobile-bar,
        .site-header__mobile-overlay {
          display: none;
        }

        .site-header__desktop {
          display: block;
        }

        .site-header__desktop-top {
          border-bottom: 1px solid var(--header-border);
        }

        .site-header__desktop-top-inner {
          min-height: 100px;
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 36px;
        }

        .site-header__brand--desktop {
          padding-left: 2px;
        }

        .site-header__logo--desktop {
          width: 80px;
        }

        .site-header__utility {
          display: flex;
          align-items: center;
          justify-content: flex-end;
          gap: 0;
          flex: 1;
        }

        .site-header__utility-divider {
          width: 1px;
          height: 50px;
          background: var(--header-border);
          margin-right: 58px;
        }

        .site-header__info-block {
          min-height: 56px;
          display: inline-flex;
          align-items: center;
          gap: 16px;
          padding: 0 28px;
          color: var(--header-text);
        }

        .site-header__info-block + .site-header__info-block {
          border-left: 1px solid var(--header-border);
        }

        .site-header__info-icon {
          display: inline-flex;
          width: 26px;
          height: 26px;
          color: #5d7e9d;
          flex: 0 0 auto;
        }

        .site-header__info-icon svg {
          width: 100%;
          height: 100%;
        }

        .site-header__info-copy {
          display: flex;
          flex-direction: column;
        }

        .site-header__info-label {
          font-size: 16px;
          line-height: 1.15;
          font-weight: 500;
          letter-spacing: -0.02em;
        }

        .site-header__info-value {
          font-size: 16px;
          line-height: 1.2;
          font-weight: 500;
          letter-spacing: -0.02em;
        }

        .site-header__review-badge {
          display: inline-flex;
          align-items: center;
          margin-left: 32px;
          padding-left: 34px;
        }

        .site-header__review-badge img {
          display: block;
          width: 126px;
          height: auto;
        }

        .site-header__desktop-bottom {
          border-bottom: 1px solid var(--header-border);
          background: #fff;
        }

        .site-header.site-header--desktop-nav-fixed .site-header__desktop {
          padding-bottom: 60px;
        }

        .site-header__desktop-bottom.site-header__desktop-bottom--fixed {
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          z-index: 60;
          background: #fff;
          box-shadow: 0 8px 20px rgba(15, 35, 55, 0.06);
        }

        .site-header__desktop-bottom-inner {
          min-height: 60px;
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 40px;
        }

        .site-header__nav {
          flex: 1;
        }

        .site-header__nav-list {
          display: flex;
          align-items: center;
          gap: 28px;
          list-style: none;
          margin: 0;
          padding: 0 0 0 2px;
        }

        .site-header__nav-item {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          position: relative;
        }

        .site-header__nav-toggle {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 18px;
          height: 18px;
          padding: 0;
          border: 0;
          background: transparent;
          color: inherit;
          cursor: pointer;
        }

        .site-header__nav-link {
          line-height: 1;
          font-weight: 500;
          letter-spacing: -0.025em;
          transition: color 180ms ease;
        }

        .site-header__nav-link.is-current,
        .site-header__nav-item.is-current > .site-header__nav-link,
        .site-header__nav-item.is-current > .site-header__nav-toggle,
        .site-header__submenu-link.is-current,
        .site-header__nav-link:hover,
        .site-header__social-link:hover {
          color: #4f708e;
        }

        .site-header__nav-chevron {
          width: 0;
          height: 0;
          border-left: 6px solid transparent;
          border-right: 6px solid transparent;
          border-top: 7px solid currentColor;
          transform: translateY(2px);
          transition: transform 180ms ease;
        }

        .site-header__nav-item--has-submenu.is-open .site-header__nav-chevron {
          transform: translateY(1px) rotate(180deg);
        }

        .site-header__submenu {
          position: absolute;
          top: calc(100% + 16px);
          left: -12px;
          min-width: 220px;
          padding: 12px;
          border: 1px solid var(--header-border);
          border-radius: 14px;
          background: #fff;
          box-shadow: 0 18px 34px rgba(15, 35, 55, 0.1);
          opacity: 0;
          visibility: hidden;
          transform: translateY(6px);
          pointer-events: none;
          transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
        }

        .site-header__nav-item--has-submenu.is-open .site-header__submenu {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
          pointer-events: auto;
        }

        .site-header__submenu-link {
          display: block;
          padding: 10px 12px;
          border-radius: 10px;
          color: var(--header-text);
          font-size: 15px;
          line-height: 1.3;
          font-weight: 500;
          white-space: nowrap;
          transition: background-color 180ms ease, color 180ms ease;
        }

        .site-header__submenu-link:hover {
          background: var(--header-hover);
          color: #4f708e;
        }

        .site-header__socials {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 34px;
          min-height: 60px;
          padding-left: 48px;
          border-left: 1px solid var(--header-border);
        }

        .site-header__social-link {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 34px;
          height: 34px;
          color: #5d7e9d;
          transition: color 180ms ease, transform 180ms ease;
        }

        .site-header__social-link:hover {
          transform: translateY(-1px);
        }

        .site-header__social-link svg {
          width: 29px;
          height: 29px;
        }

        .hero__grid {
          grid-template-columns: minmax(0, 43%) minmax(520px, 57%);
          grid-template-areas:
            "content visual"
            "temos temos"
            "featured featured";
          padding: 0;
        }

        .hero__visual {
          min-height: 682px;
          background: transparent;
        }

        .hero__doctors {
          position: relative;
          display: block;
          height: 682px;
          max-width: 900px;
          margin: 0 0 0 auto;
          padding: 0;
        }

        .hero__doctor-composite {
          position: absolute;
          bottom: -70px;
          left: 50%;
          transform: translateX(-50%);
          width: min(52vw, 660px);
          max-width: none;
        }

        .hero__content {
          align-self: stretch;
          min-height: 682px;
          display: flex;
          flex-direction: column;
          justify-content: center;
        }

        .hero__title {
          max-width: 590px;
          font-size: 45px;
        }

        .hero__benefits {
          margin-top: 42px;
        }

        .hero__benefit {
          font-size: 18px;
          line-height: 1.2;
          font-weight: 500;
        }

        .hero__benefit-icon {
          width: 30px;
          height: 30px;
        }

        .hero__benefit-icon svg {
          width: 14px;
          height: 14px;
        }

        .hero__benefit--desktop-only {
          display: flex;
        }

        .hero__cta {
          min-width: 256px;
          min-height: 54px;
          margin-top: 66px;
          padding: 18px 34px;
          font-size: 17px;
        }

        .hero__cta-icon {
          width: 22px;
          height: 22px;
        }

        .hero__temos-card {
          border-top-left-radius: 32px;
          border-top-right-radius: 32px;
        }

        .hero__temos {
          padding: 28px 72px 18px 92px;
          gap: 26px;
        }

        .hero__temos-badge {
          width: 114px;
        }

        .hero__temos-copy {
          font-size: 20px;
          font-weight: 500;
        }

        .hero__featured {
          padding: 24px 0 24px;
        }

        .hero__featured-inner {
          display: grid;
          grid-template-columns: 180px minmax(0, 1fr);
          align-items: center;
          column-gap: 28px;
        }

        .hero__featured-title {
          margin: 0;
          font-size: 18px;
          line-height: 1.2;
          text-align: left;
          padding-left: var(--hero-featured-pad);
          padding-right: 0;
        }

        .hero__featured-marquee {
          width: 100%;
          margin-top: 0;
        }

        .hero__featured-marquee::before,
        .hero__featured-marquee::after {
          width: 40px;
        }

        .hero__featured-logos {
          gap: 96px;
          padding: 0 var(--hero-featured-pad) 0 0;
        }

        .hero__featured-logos img {
          height: 32px;
        }
      }

      @media (max-width: 1442.98px) {
        .hero__content {
          grid-area: content;
          padding: 38px 14px 8px;
        }
      }

      @media (min-width: 1440px) {
        .site-header__container {
          padding: 0 32px;
        }

        .site-header__desktop-top-inner {
          gap: 64px;
        }

        .site-header__nav-list {
          gap: 31px;
        }

        .site-header__socials {
          min-width: 300px;
          gap: 36px;
          padding-left: 54px;
        }

        :root {
          --hero-featured-pad: 32px;
        }

        .hero__content {
          padding-left: 154px;
        }

        .hero__title {
          font-size: 45px;
          max-width: 620px;
          line-height: 1.2em;
          letter-spacing: 0.5px;
        }

        .hero__temos {
          padding-left: 150px;
          padding-right: 100px;
        }

        .hero__featured-inner {
          grid-template-columns: 220px minmax(0, 1fr);
          column-gap: 36px;
        }

        .hero__featured-title {
          padding-left: var(--hero-featured-pad);
        }

        .hero__featured-logos {
          padding: 0 var(--hero-featured-pad) 0 0;
        }
      }


:root {
  --legal-shell: min(100% - 32px, 1080px);
  --legal-border: #dbe4ec;
  --legal-surface: #f7fafc;
  --legal-muted: #5a738a;
}

body.legal-page {
  background: #fff;
}

.legal-main {
  background: linear-gradient(180deg, #f6f9fc 0%, #ffffff 180px);
}

.legal-hero {
  padding: 56px 0 24px;
  border-bottom: 1px solid var(--header-border-soft);
}

.legal-hero__inner,
.legal-content {
  width: var(--legal-shell);
  margin: 0 auto;
}

.legal-hero__eyebrow {
  margin: 0 0 12px;
  color: var(--hero-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-hero__title {
  margin: 0;
  color: var(--hero-text);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.legal-hero__description {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--legal-muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-content {
  padding: 40px 0 88px;
}

.legal-article {
  max-width: 100%;
  margin: 0 auto;
  padding: 36px clamp(20px, 3.4vw, 44px);
  border: 1px solid var(--legal-border);
  border-radius: 24px;
  background: var(--legal-surface);
  box-shadow: 0 16px 32px rgba(15, 35, 55, 0.05);
}

.legal-article > :first-child {
  margin-top: 0;
}

.legal-article > :last-child {
  margin-bottom: 0;
}

.legal-article h1,
.legal-article h2,
.legal-article h3,
.legal-article h4 {
  color: var(--hero-text);
  line-height: 1.25;
}

.legal-article h1 {
  margin: 0 0 24px;
  font-size: clamp(30px, 4vw, 40px);
}

.legal-article h2 {
  margin: 34px 0 16px;
  font-size: clamp(23px, 3vw, 30px);
}

.legal-article h3 {
  margin: 26px 0 12px;
  font-size: clamp(18px, 2.4vw, 22px);
}

.legal-article h4 {
  margin: 22px 0 10px;
  font-size: 18px;
}

.legal-article p,
.legal-article li {
  margin: 0 0 16px;
  color: var(--header-text);
  font-size: 16px;
  line-height: 1.85;
}

.legal-article ul,
.legal-article ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-article li + li {
  margin-top: 10px;
}

.legal-article a {
  color: #204e75;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.site-footer__main {
  background: #0b1f33;
  padding: 34px 0 40px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.site-footer__heading {
  margin: 0;
  font-size: 16px !important;
  font-weight: 500;
  font-family: "Poppins", Sans-serif;
  text-transform: uppercase;
}

.site-footer__divider {
  margin-top: 14px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.site-footer__text,
.site-footer__address,
.site-footer__menu {
  margin: 18px 0 0;
}

.site-footer__text,
.site-footer__address p,
.site-footer__menu-item a {
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", Sans-serif;
  color: rgba(255, 255, 255, 0.96);
}

.site-footer__address {
  font-style: normal;
}

.site-footer__address p {
  margin: 0 0 10px;
}

.site-footer__menu {
  list-style: none;
  padding: 0;
}

.site-footer__menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__menu-item--submenu {
  display: block;
}

.site-footer__menu-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.site-footer__menu-item + .site-footer__menu-item {
  margin-top: 6px;
}

.site-footer__menu-item a.is-current {
  color: #8fb1d4 !important;
}

.site-footer__menu-indicator {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  transform: translateY(2px);
  transition: transform 180ms ease;
}

.site-footer__menu-item--submenu.is-open .site-footer__menu-indicator {
  transform: translateY(1px) rotate(180deg);
}

.site-footer__submenu {
  max-height: 0;
  overflow: hidden;
  padding-left: 16px;
  opacity: 0;
  transition: max-height 220ms ease, opacity 180ms ease, margin-top 180ms ease;
}

.site-footer__menu-item--submenu.is-open .site-footer__submenu {
  max-height: 80px;
  margin-top: 8px;
  opacity: 1;
}

.site-footer__submenu-link {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer__submenu-link.is-current {
  color: #8fb1d4 !important;
}

.site-footer__reviews {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.site-footer__reviews::-webkit-scrollbar {
  display: none;
}

.site-footer__review {
  flex: 0 0 auto;
  display: inline-flex;
}

.site-footer__review img {
  display: block;
  width: auto;
  height: 40px;
  object-fit: contain;
}

.site-footer__legal-bar,
.site-footer__bottom-bar {
  background: #fff;
  color: #10263b;
}

.site-footer__legal-bar {
  border-top: 1px solid rgba(18, 38, 59, 0.06);
  border-bottom: 1px solid rgba(18, 38, 59, 0.08);
}

.site-footer__legal-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.site-footer__legal-inner a,
.site-footer__copyright {
  font-size: 14px !important;
  font-family: "Poppins", Sans-serif;
  font-weight: 500;
  color: #10263b;
}

.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.site-footer__copyright {
  margin: 0;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer__social-link {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: #557691;
}

.site-footer__social-link svg {
  width: 100%;
  height: 100%;
}

.site-footer__legal-inner a.is-current,
.site-footer__legal-inner a[aria-current="page"] {
  color: var(--hero-text);
  font-weight: 600;
}

@media (min-width: 1024px) {
  .site-footer__main {
    padding: 88px 0 96px;
  }

  .site-footer__grid {
    grid-template-columns: 1.02fr 1.05fr 1fr;
    gap: 38px;
  }

  .site-footer__text,
  .site-footer__address,
  .site-footer__menu {
    margin-top: 30px;
  }

  .site-footer__text,
  .site-footer__address p,
  .site-footer__menu-item a {
    line-height: 1.6;
    font-weight: 500;
    font-family: "Poppins", Sans-serif;
  }

  .site-footer__reviews {
    margin-top: 74px;
    gap: 36px;
    overflow: visible;
  }

  .site-footer__review img {
    height: 46px;
  }

  .site-footer__legal-inner {
    gap: 28px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .site-footer__legal-inner a,
  .site-footer__copyright {
    font-size: 16px !important;
  }

  .site-footer__bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .site-footer__socials {
    gap: 28px;
  }

  .site-footer__social-link {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 767px) {
  .legal-hero {
    padding: 36px 0 18px;
  }

  .legal-hero__description {
    font-size: 15px;
    line-height: 1.7;
  }

  .legal-content {
    padding: 28px 0 64px;
  }

  .legal-article {
    padding: 24px 18px 28px;
    border-radius: 18px;
  }

  .legal-article p,
  .legal-article li {
    font-size: 15px;
    line-height: 1.78;
  }
}
