html, body {
  background-color: #F5F5F5;
  margin: 0;
  padding: 0;
  width: 100vw; /* Ensure it fully spans the viewport */
  height: 100vh;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Ensures padding doesn't affect width */
}

/* Footer Styling */
  .vg-footer {
    --vg-footer-navy: #142333;
    --vg-footer-white: #ffffff;
    --vg-footer-coral: #ff6642;
    --vg-footer-max: 1240px;

    margin-top: 84px;
    background: var(--vg-footer-navy);
    color: var(--vg-footer-white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .vg-footer * {
    box-sizing: border-box;
  }

  .vg-footer a {
    color: inherit;
    text-decoration: none;
  }

  .vg-footer-container {
    width: min(var(--vg-footer-max), calc(100% - 48px));
    margin: 0 auto;
  }

  .vg-footer-main {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.75fr 0.95fr;
    gap: 42px;
    padding: 54px 0 42px;
  }

  .vg-footer-brand {
    max-width: 340px;
  }

  .vg-footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .vg-footer-logo-row img {
    width: 46px;
    height: 38px;
    object-fit: contain;
  }

  .vg-footer-logo-row strong,
  .vg-footer-logo-row span {
    display: block;
  }

  .vg-footer-logo-row strong {
    font-size: 1.2rem;
  }

  .vg-footer-logo-row span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .vg-footer-brand p {
    margin: 19px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.91rem;
    line-height: 1.65;
  }

  .vg-footer-column h3,
  .vg-footer-callout h3 {
    margin: 0 0 16px;
    color: var(--vg-footer-white);
    font-size: 0.83rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .vg-footer-column ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .vg-footer-column a {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.89rem;
  }

  .vg-footer-column a:hover {
    color: var(--vg-footer-white);
  }

  .vg-footer-callout {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
  }

  .vg-footer-callout p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .vg-footer-callout a {
    display: inline-flex;
    margin-top: 15px;
    color: var(--vg-footer-coral);
    font-size: 0.88rem;
    font-weight: 900;
  }

  .vg-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 23px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
  }

  .vg-footer-bottom strong {
    color: rgba(255, 255, 255, 0.74);
  }

  @media (max-width: 1040px) {
    .vg-footer-main {
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
    }

    .vg-footer-callout {
      grid-column: 1 / -1;
    }
  }

  @media (max-width: 780px) {
    .vg-footer-container {
      width: min(var(--vg-footer-max), calc(100% - 32px));
    }

    .vg-footer-main {
      grid-template-columns: 1fr;
    }

    .vg-footer-callout {
      grid-column: auto;
    }

    .vg-footer-bottom {
      flex-direction: column;
    }
  }

/*  Make the “×” bigger, bolder, and more obvious:  */
.close-btn {
  transition: 0.25s ease;
  background-color: var(--gs-coral);
  border-radius: 15px;
  position: absolute;
  padding: 5px 10px;
  top: 12px;           /* push it down slightly */
  right: 12px;         /* push it in from the edge */
  font-size: 1.6rem;   /* enlarge from default */
  font-weight: bold;
  color: #1d1d1d;         /* a dark gray by default */
  cursor: pointer;
  user-select: none;   /* prevent accidental text-selection */
  transition: color 0.15s ease;
  z-index: 10;         /* ensure it sits on top of content */
}

/* Hover/focus state to make it pop: */
.close-btn:hover,
.close-btn:focus {
  transition: 0.25s ease;
  color: #000000; 
  border-radius: 0px;
  background-color: var(--gs-coral);    
}

h1 {
  text-align: center;
  font-family: 'dubai';
  font-weight: bold;
  font-size: 60px;
  color: #2D2D2D;
}

h2 {
  text-align: center;
  font-style: initial;
  font-family: 'dubai';
  font-weight: 600;
  font-size: 40px;
  color: #2D2D2D;
}

h3 {
  text-align: center;
  font-family: "dubai";
  font-style: oblique;
  font-weight: 700;
  font-size: 35px;
  color: var(--gs-white);
}

h5 {
  font-family: "dubai";
  font-style: initial;
  font-weight: 500;
  font-size: 17px;
}