:root {
      --primary: #16324f;
      --primary-dark: #0b1b2b;
      --gold: #b89b5e;
      --text: #111827;
      --muted: #6b7280;
      --soft: #f6f7f9;
      --white: #ffffff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Aptos, Arial, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      padding-bottom: 62px;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button {
      font-family: inherit;
    }

    .container {
      width: min(1180px, 90%);
      margin: auto;
    }

    section:not(.legal-section){
    padding:100px 0;
}

    .section-title {
      max-width: 760px;
      margin-bottom: 56px;
    }

    .section-title span {
      color: var(--gold);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 1.4px;
      text-transform: uppercase;
    }

    .section-title h2 {
      margin-top: 14px;
      font-size: clamp(2rem, 4vw, 3.35rem);
      line-height: 1.08;
      letter-spacing: -2px;
      color: var(--primary-dark);
    }

    .section-title p {
      margin-top: 18px;
      color: var(--muted);
      font-size: 1.05rem;
    }
    