    /* Outer container that holds the two layers */
    #section-title {
      position: relative;
      width: 100%;
      height: 28vh;
      /* adjust as needed */
      margin: 0;
      padding: 0;
      z-index: 5;

      /* Flexbox Centering - Loads instantly */
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 3vh;
      /* Space between WE and dynamic word */
    }

    /* The two layers are absolutely positioned so we can adjust them independently */
    #static-layer,
    #dynamic-layer {
      position: relative;
      /* Changed from absolute to relative */
      top: auto;
      transform: none;
      left: auto !important;
      /* Override any JS inline styles */
      white-space: nowrap;

      /* Typography & Shadows */
      font-family: 'Sofia Pro', sans-serif;
      font-weight: 100;
      font-size: 20vh;
      color: #ffffff;
      text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      /* Deep shadow for pop */

      line-height: 1;
      /* Tighter line height for alignment */
    }

    /* Dynamic word styling */
    #dynamic-layer {
      font-weight: bold;
      text-decoration: none;
      margin: 0;
      /* Optional: min-width to stabilize "WE" position if words are similar length */
      /* min-width: 5ch; */
      /* text-align: left; */
    }

    /* Vertical slide animations on the dynamic layer */
    .slide-up {
      animation: slideUp 0.6s forwards;
    }

    .slide-in {
      animation: slideIn 0.6s forwards;
    }

    @keyframes slideUp {
      from {
        transform: translateY(0);
        opacity: 1;
      }

      to {
        transform: translateY(-100%);
        opacity: 0;
      }
    }

    @keyframes slideIn {
      from {
        transform: translateY(100%);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* Intro Animation for the content info */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Content Info Container */
    .content-info {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin-top: 2vh;
      z-index: 10;

      /* Animation on load */
      animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s backwards;

      /* Ensure it doesn't overlap weirdly */
      pointer-events: none;
      /* Let clicks pass through empty areas if needed */
    }

    /* Re-enable pointer events for interactive children */
    .content-info>* {
      pointer-events: auto;
    }

    /* Welcome Description */
    .description-landing {
      font-family: 'Sofia Pro', sans-serif;
      font-weight: 300;
      text-align: center;
      font-size: 2.5vh;
      color: #f5f5f5;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
      line-height: 1.4;
      margin-bottom: 4vh;
      max-width: 80%;
    }

    /* Buttons Container */
    .buttons-landing {
      display: flex;
      flex-direction: row;
      gap: 2rem;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin-bottom: 5vh;
    }

    /* Premium Glassmorphism Button */
    .button-landing {
      background-color: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.5);
      padding: 1.8vh 4vh;
      border-radius: 50px;
      text-align: center;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      min-width: 200px;
      cursor: pointer;

      display: flex;
      align-items: center;
      justify-content: center;

      /* Text Styling */
      color: #ffffff;
      font-family: 'Sofia Pro', sans-serif;
      font-weight: 600;
      font-size: 1.8vh;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .button-landing:hover {
      background-color: #ffffff;
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
      border-color: #ffffff;
      color: #1b1b1b;
    }

    .button-landing a {
      text-decoration: none;
      color: inherit;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Responsive Adjustments */

    /* Tablet / Medium Screens */
    @media (max-width: 1024px) {

      #static-layer,
      #dynamic-layer {
        font-size: 15vh;
      }

      .button-landing {
        padding: 1.5vh 3vh;
        min-width: 160px;
      }
    }

    /* Small Tablet / Large Mobile */
    @media (max-width: 780px) {

      #static-layer,
      #dynamic-layer {
        font-size: 10vh;
      }

      .description-landing {
        font-size: 2.2vh;
        max-width: 90%;
      }
    }

    /* Mobile */
    @media (max-width: 480px) {

      #static-layer,
      #dynamic-layer {
        font-size: 8vh;
      }

      .buttons-landing {
        flex-direction: column;
        gap: 1.5vh;
      }

      .button-landing {
        width: 80%;
        min-width: unset;
        max-width: 300px;
        padding: 1.5vh 2vh;
      }

      .description-landing {
        font-size: 2vh;
        margin-bottom: 3vh;
      }

      .content-info {
        transform: translateY(0);
      }
    }