
    :root{
      --bg: #FFFEFB;
       --card1: #F7F1E9;
      --card2: #F6EFE7; 
      --text: #2A2522;
      --muted: #7A6E66;
      --line: rgba(42,37,34,.12);
      --brown: #7B5A4C;
      --brown2: #6B4C40;
      --white: #ffffff;
      --radius: 16px;
      --shadow: 0 10px 30px rgba(20, 10, 5, 0.06);
    }

    *{ box-sizing: border-box; }
    body{
      margin: 0;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
    }

    a{ text-decoration: none; color: inherit; }
    .container-contact{
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
    }


    /* ================= PAGE HERO (full-width) ================= */
    .page-gg {
      background:
        linear-gradient(120deg, rgba(13,59,102,.94), rgba(8,40,67,.92)),
        url("../images/learning-wellness.png") center/cover no-repeat;
      color: #fff;
      padding: 88px 0 80px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .page-gg::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 85% -10%, rgba(244,162,97,.10) 0%, transparent 55%),
        radial-gradient(circle at 10% 110%, rgba(255,255,255,.05) 0%, transparent 50%);
      pointer-events: none;
    }
    .page-gg::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 100px;
      background: linear-gradient(to top, rgba(246,249,252,1), rgba(246,249,252,0));
      pointer-events: none;
    }
    .container-gg {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .page-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      background: rgba(244,162,97,.18);
      border: 1px solid rgba(244,162,97,.35);
      border-radius: 999px;
      padding: 6px 18px;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: #f4a261;
      margin-bottom: 22px;
    }
    .page-title {
      text-align: center;
      margin: 0;
      font-family: "Playfair Display", serif;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: #fff;
    }
    .page-title i, .page-title span {
      color: #f4a261;
      font-style: normal;
    }
    .h1-gg {
      margin: 0;
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      line-height: 1.15;
    }
    .page-subtitle {
      text-align: center;
      margin: 20px auto 0;
      max-width: 640px;
      font-size: 1.05rem;
      color: rgba(255,255,255,.88);
      line-height: 1.75;
    }
    @media (max-width: 480px) {
      .page-gg { padding: 64px 0 56px; }
    }

    /* ================= PAGE HEADER ================= */
    .page-contact{
      padding: 46px 0 30px;
    }

    .page-subtitle{
      text-align: center;
      margin: 10px auto 0;
      max-width: 560px;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ================= CONTACT GRID ================= */
    .contact-grid{
      margin-top: 38px;
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 24px;
      align-items: start;
    }

    .stack{
      display: grid;
      gap: 18px;
    }

    .card{
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: var(--shadow);
    }

    .mini-card{
      padding: 18px 18px 16px;
    }

    .card-top{
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .icon{
      width: 36px;
      height: 36px;
      border-radius: 12px;
      background: rgba(123,90,76,.12);
      display: grid;
      place-items: center;
      color: var(--brown);
      flex: 0 0 auto;
    }

    .card-title-contact{
      font-weight: 700;
      font-size: 15px;
      margin: 0;
    }

    .card-text-contact{
      font-size: 14px;
      color: var(--muted);
      line-height: 1.55;
      margin: 0;
    }

    .card-text b{
      color: #2a2522;
      font-weight: 600;
    }

    /* ================= HELP DESK FORM ================= */
    .helpdesk{
      padding: 22px;
      background: var(--card2);
    }

    .helpdesk h2{
      margin: 0;
      font-family: "Playfair Display", serif;
      font-size: 20px;
      font-weight: 600;
    }

    .helpdesk p{
      margin: 8px 0 18px;
      font-size: 12px;
      color: var(--muted);
      line-height: 1.6;
    }

    .form-grid{
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }

    label{
      font-size: 12px;
      color: #2a2522;
      font-weight: 600;
      display: block;
      margin-bottom: 6px;
    }

    input, textarea{
      width: 100%;
      padding: 12px 12px;
      border-radius: 10px;
      border: 1px solid rgba(0,0,0,0.12);
      background: rgba(255,255,255,0.85);
      outline: none;
      font-size: 13px;
      transition: .15s ease;
      font-family: inherit;
    }

    input:focus, textarea:focus{
      border-color: rgba(123,90,76,.55);
      box-shadow: 0 0 0 4px rgba(123,90,76,.12);
      background: #fff;
    }

    textarea{
      min-height: 120px;
      resize: vertical;
    }

    .two-col{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .submit{
      margin-top: 6px;
      width: 100%;
      border-radius: 999px;
      padding: 12px 16px;
      background: var(--brown);
      color: white;
      border: 0;
      font-weight: 700;
      cursor: pointer;
      transition: .2s ease;
      box-shadow: 0 16px 30px rgba(123,90,76,.22);
    }
    .submit:hover{ background: var(--brown2); transform: translateY(-1px); }

    /* ================= BOTTOM INFO CARDS ================= */
    .bottom-grid{
      margin-top: 22px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .small-info{
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 16px 16px 14px;
      box-shadow: var(--shadow);
      min-height: 120px;
    }

    .small-info h4{
      margin: 0 0 10px;
      font-size: 15px;
      font-weight: 800;
      color: #2a2522;
    }

    .small-info p{
      margin: 0;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.55;
    }

    /* ================= CTA STRIP ================= */
    .cta-strip{
      margin-top: 22px;
      background: #F4ECE3;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 18px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .cta-strip h3{
      margin: 0;
      font-size: 13px;
      font-weight: 800;
      color: #2a2522;
    }

    .cta-strip p{
      margin: 6px 0 0;
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
      max-width: 620px;
      
    }

    .cta-btn{
      white-space: nowrap;
      background: var(--brown);
      color: #fff;
      border-radius: 999px;
      padding: 10px 16px;
      font-weight: 800;
      font-size: 15px;
      box-shadow: 0 14px 26px rgba(123,90,76,.22);
    }
    .cta-btn:hover{ background: var(--brown2); transform: translateY(-1px); }

    /* ================= FOOTER (simple) ================= */
    .page-contact ~ footer:not(.site-footer){
      margin-top: 36px;
      padding: 24px 0 40px;
      border-top: 1px solid rgba(0,0,0,0.06);
      color: #6f635c;
      font-size: 12px;
    }

    /* ================= RESPONSIVE ================= */
    @media (max-width: 980px){
      .contact-grid{ grid-template-columns: 1fr; }
      .brand{ min-width: auto; }
      .nav-links{ display: none; }
      .bottom-grid{ grid-template-columns: 1fr; }
      .two-col{ grid-template-columns: 1fr; }
      .cta-strip{ flex-direction: column; align-items: flex-start; }
    }