:root {
      --navy: #06224a;
      --blue: #07539a;
      --bright-blue: #0066cc;
      --light-blue: #dff4fb;
      --pale-blue: #f2fbff;
      --text: #12233f;
      --muted: #5d6b82;
      --white: #ffffff;
      --border: #d8e6f3;
      --shadow: 0 16px 40px rgba(6, 34, 74, 0.12);
      --radius: 22px;
      --max-width: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

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

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

    .container {
      width: min(100% - 40px, var(--max-width));
      margin: 0 auto;
    }


    .top-contact-bar {
      background: var(--navy);
      color: var(--white);
      font-size: 14px;
      font-weight: 700;
    }

    .top-contact-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      min-height: 42px;
      flex-wrap: wrap;
      text-align: center;
    }

    .top-contact-inner a {
      color: var(--white);
      text-decoration: none;
    }

    .top-contact-inner a:hover {
      text-decoration: underline;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 92px;
      gap: 28px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand img {
      width: 220px;
      height: auto;
      object-fit: contain;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 34px;
      font-weight: 700;
      color: var(--navy);
      font-size: 15px;
    }

    .nav a:hover {
      color: var(--bright-blue);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 72px 0 54px;
      background:
        radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.14), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f3fbff 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 80px -120px auto auto;
      width: 720px;
      height: 420px;
      background:
        repeating-radial-gradient(
          ellipse at center,
          rgba(0, 102, 204, 0.14) 0,
          rgba(0, 102, 204, 0.14) 1px,
          transparent 3px,
          transparent 16px
        );
      opacity: 0.45;
      transform: rotate(-8deg);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      align-items: center;
      gap: 54px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      margin-bottom: 22px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.78);
      color: var(--blue);
      font-size: 14px;
      font-weight: 800;
    }

    .eyebrow span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--bright-blue);
    }

    h1 {
      font-size: clamp(42px, 6vw, 72px);
      line-height: 1.05;
      letter-spacing: -2.2px;
      color: var(--navy);
      margin-bottom: 24px;
    }

    h1 strong {
      color: var(--bright-blue);
      display: block;
    }

    .hero-copy {
      max-width: 620px;
      color: var(--muted);
      font-size: 19px;
      margin-bottom: 30px;
    }

    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      margin-bottom: 22px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 0 24px;
      border-radius: 12px;
      font-weight: 800;
      border: 2px solid var(--blue);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      cursor: pointer;
    }

    .btn-primary {
      color: var(--white);
      background: linear-gradient(135deg, var(--blue), var(--bright-blue));
      box-shadow: 0 12px 28px rgba(0, 102, 204, 0.22);
    }

    .btn-secondary {
      color: var(--blue);
      background: var(--white);
    }

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

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(6, 34, 74, 0.16);
    }

    .support-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--blue);
      font-weight: 800;
      margin-top: 4px;
    }

    .question-icon {
      display: inline-grid;
      place-items: center;
      width: 28px;
      height: 28px;
      border: 2px solid var(--blue);
      border-radius: 50%;
      font-size: 15px;
      font-weight: 900;
    }


    .hero-contact-line {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 18px;
      margin-top: 22px;
      padding: 16px 18px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.86);
      color: var(--navy);
      font-size: 15px;
      font-weight: 800;
      box-shadow: 0 10px 24px rgba(6, 34, 74, 0.08);
    }

    .hero-contact-line a {
      color: var(--blue);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .hero-visual {
      position: relative;
      min-height: 520px;
      display: grid;
      place-items: center;
    }

    .profile-card {
      position: relative;
      width: min(100%, 470px);
      min-height: 500px;
      border-radius: 42px;
      overflow: hidden;
      background:
        linear-gradient(160deg, rgba(5, 83, 154, 0.18), rgba(223, 244, 251, 0.95)),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1000&q=80") center/cover;
      box-shadow: var(--shadow);
    }

    .profile-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.15), rgba(0, 83, 154, 0.55)),
        radial-gradient(circle at 70% 20%, rgba(255,255,255,0.35), transparent 32%);
    }

    .profile-card::after {
      content: "Breathe";
      position: absolute;
      right: 28px;
      bottom: 22px;
      color: rgba(255, 255, 255, 0.85);
      font-size: 18px;
      font-weight: 900;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .wave {
      position: absolute;
      left: -80px;
      right: -80px;
      top: 42%;
      height: 150px;
      background:
        repeating-linear-gradient(
          170deg,
          rgba(0, 102, 204, 0.16) 0,
          rgba(0, 102, 204, 0.16) 1px,
          transparent 2px,
          transparent 12px
        );
      border-radius: 999px;
      filter: blur(0.2px);
      opacity: 0.85;
      transform: rotate(-6deg);
    }

    section {
      padding: 78px 0;
    }

    .section-title {
      max-width: 760px;
      margin: 0 auto 42px;
      text-align: center;
    }

    .section-title h2 {
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.12;
      letter-spacing: -1.2px;
      color: var(--navy);
      margin-bottom: 16px;
    }

    .section-title p {
      color: var(--muted);
      font-size: 18px;
    }

    .benefits {
      padding-top: 24px;
      background: linear-gradient(180deg, #f3fbff 0%, #ffffff 100%);
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .card {
      padding: 32px 24px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow);
      text-align: center;
    }

    .icon {
      width: 68px;
      height: 68px;
      display: grid;
      place-items: center;
      margin: 0 auto 20px;
      border-radius: 50%;
      background: var(--pale-blue);
      color: var(--blue);
      font-size: 32px;
    }

    .card h3 {
      color: var(--blue);
      font-size: 21px;
      margin-bottom: 8px;
    }

    .card p {
      color: var(--muted);
      font-size: 15px;
    }

    .split-section {
      padding-top: 20px;
    }

    .split-panel {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 30px;
      align-items: stretch;
      padding: 34px;
      border-radius: 30px;
      background: linear-gradient(135deg, #f4fbff 0%, #ffffff 100%);
      border: 1px solid var(--border);
      overflow: hidden;
    }

    .split-copy {
      padding: 28px 12px 28px 16px;
      align-self: center;
    }

    .split-copy h2 {
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.14;
      color: var(--navy);
      letter-spacing: -1px;
      margin-bottom: 18px;
    }

    .split-copy p {
      color: var(--muted);
      margin-bottom: 24px;
      font-size: 17px;
    }

    .split-image {
      min-height: 360px;
      border-radius: 24px;
      background:
        linear-gradient(90deg, rgba(6, 34, 74, 0.1), rgba(0, 102, 204, 0.1)),
        url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1200&q=80") center/cover;
    }

    .services {
      background: var(--white);
    }

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

    .service-card {
      min-height: 340px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 34px;
      border-radius: 26px;
      border: 1px solid var(--border);
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .service-card h3 {
      font-size: 24px;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .service-card p {
      color: var(--muted);
      margin-bottom: 24px;
    }

    .audience {
      background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
    }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      border: 1px solid var(--border);
      border-radius: 26px;
      overflow: hidden;
      background: var(--border);
    }

    .audience-item {
      padding: 34px 24px;
      text-align: center;
      background: var(--white);
    }

    .audience-item .icon {
      box-shadow: none;
      margin-bottom: 14px;
    }

    .audience-item h3 {
      color: var(--navy);
      margin-bottom: 8px;
      font-size: 19px;
    }

    .audience-item p {
      color: var(--muted);
      font-size: 15px;
    }

    .faq {
      background: var(--white);
    }

    .faq-panel {
      display: grid;
      grid-template-columns: 1fr 0.65fr;
      gap: 40px;
      align-items: center;
      padding: 46px;
      border-radius: 30px;
      background:
        radial-gradient(circle at 88% 45%, rgba(0, 102, 204, 0.18), transparent 20%),
        linear-gradient(135deg, #f2fbff, #ffffff);
      border: 1px solid var(--border);
    }

    .faq-panel h2 {
      font-size: clamp(30px, 4vw, 44px);
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: 22px;
    }

    .faq-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 16px 18px;
      margin-bottom: 12px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--white);
      color: var(--navy);
      font-weight: 800;
    }

    .faq-row span:last-child {
      color: var(--blue);
      font-size: 22px;
    }

    .faq-visual {
      text-align: center;
    }

    .big-question {
      width: 150px;
      height: 150px;
      display: grid;
      place-items: center;
      margin: 0 auto 28px;
      border-radius: 50%;
      background: var(--white);
      box-shadow: var(--shadow);
      color: var(--bright-blue);
      font-size: 88px;
      font-weight: 900;
    }

    .final-cta {
      padding: 0 0 70px;
      background: var(--white);
    }

    .cta-panel {
      display: grid;
      grid-template-columns: 1fr 0.8fr;
      gap: 30px;
      align-items: center;
      padding: 48px;
      border-radius: 30px;
      color: var(--white);
      background:
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.18), transparent 24%),
        linear-gradient(135deg, var(--blue), #003f82);
      overflow: hidden;
    }

    .cta-panel h2 {
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.12;
      margin-bottom: 14px;
    }

    .cta-panel p {
      color: rgba(255, 255, 255, 0.82);
      font-size: 18px;
    }


    .cta-contact-line {
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.95) !important;
      font-weight: 800;
      line-height: 1.8;
    }

    .cta-contact-line a {
      color: var(--white);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .cta-actions {
      display: grid;
      gap: 16px;
    }

    .footer {
      padding: 28px 0;
      border-top: 1px solid var(--border);
      color: var(--muted);
      text-align: center;
      font-size: 14px;
    }



    .contact-details {
      padding: 70px 0;
      background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 34px;
      align-items: center;
      padding: 42px;
      border: 1px solid var(--border);
      border-radius: 30px;
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .contact-label {
      color: var(--blue);
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 0.08em;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .contact-grid h2 {
      color: var(--navy);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      margin-bottom: 14px;
    }

    .contact-grid p {
      color: var(--muted);
      font-size: 17px;
    }

    .contact-card {
      display: grid;
      gap: 14px;
      padding: 28px;
      border-radius: 22px;
      background: var(--navy);
      border: 1px solid var(--blue);
      box-shadow: var(--shadow);
    }

    .contact-card a,
    .contact-card address {
      color: var(--white);
      font-style: normal;
      font-size: 18px;
      font-weight: 800;
    }

    .contact-card a:hover {
      color: var(--light-blue);
      text-decoration: underline;
    }

    .footer-inner {
      display: grid;
      gap: 8px;
    }

    .footer a {
      color: var(--blue);
      font-weight: 800;
    }

    @media (max-width: 980px) {
      .header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
      }

      .nav {
        flex-wrap: wrap;
        gap: 16px 24px;
      }

      .hero-grid,
      .split-panel,
      .faq-panel,
      .cta-panel,
      .contact-grid {
        grid-template-columns: 1fr;
      }

  
    .hero-contact-line {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 18px;
      margin-top: 22px;
      padding: 16px 18px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.86);
      color: var(--navy);
      font-size: 15px;
      font-weight: 800;
      box-shadow: 0 10px 24px rgba(6, 34, 74, 0.08);
    }

    .hero-contact-line a {
      color: var(--blue);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .hero-visual {
        min-height: 380px;
      }

      .profile-card {
        min-height: 380px;
      }

      .card-grid,
      .audience-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .services-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, var(--max-width));
      }

      .top-contact-inner {
        align-items: center;
        flex-direction: column;
        gap: 4px;
        padding: 8px 0;
        font-size: 13px;
      }

      .hero-contact-line {
        display: grid;
        gap: 8px;
      }

      .brand img {
        width: 180px;
      }

      .nav {
        font-size: 14px;
      }

      .hero {
        padding-top: 48px;
      }

      h1 {
        letter-spacing: -1.2px;
      }

      .button-row,
  
    .cta-contact-line {
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.95) !important;
      font-weight: 800;
      line-height: 1.8;
    }

    .cta-contact-line a {
      color: var(--white);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .cta-actions {
        display: grid;
        width: 100%;
      }

      .btn {
        width: 100%;
      }

      .card-grid,
      .audience-grid {
        grid-template-columns: 1fr;
      }

      .split-panel,
      .faq-panel,
      .cta-panel,
      .contact-grid {
        padding: 24px;
      }

      section {
        padding: 56px 0;
      }
    }
