    /* Outer container that holds the two layers */
    #section-title {
        position: relative;
        width: 100%;
        height: 28vh; /* adjust as needed */
        margin: 0;
        padding: 0;
      }
      
      /* The two layers are absolutely positioned so we can adjust them independently */
      #static-layer,
      #dynamic-layer {
        position: absolute;
        top: 50%;
        /* Note: transform here only vertically centers (translateY(-50%)); horizontal adjustments will be done with left */
        transform: translateY(-50%);
        transition: left 0.6s ease; /* animate horizontal shifts */
        white-space: nowrap;
      }
      
      /* "We" styling */
      #static-layer {
        font-size: 20vh;
        font-family: 'Sofia Pro', sans-serif;
        font-weight: 100;
      }
      
      /* Dynamic word styling */
      #dynamic-layer {
        font-size: 20vh;
        font-family: 'Sofia Pro', sans-serif;
        font-weight: 100;
        text-decoration: none;
        margin: 0;
        font-weight: bold;
      }
      
      /* 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(-50%) translateY(0); opacity: 1; }
        to   { transform: translateY(-50%) translateY(-100%); opacity: 0; }
      }
      @keyframes slideIn {
        from { transform: translateY(-50%) translateY(100%); opacity: 0; }
        to   { transform: translateY(-50%) translateY(0); opacity: 1; }
      }
      

      @media (max-width: 780px) {
        #static-layer,
        #dynamic-layer {
          font-size: 10vh;
          /* Do not change transform here; horizontal positioning will come from JS updatePositions() */
        }
        /* You can remove any fixed margin on #dynamic-layer if present */
        #dynamic-layer {
          margin: 0;
        }
      }


      .description-landing{
        font-family: 'Sofia Pro', sans-serif;
        font-weight: 100;
        text-align: center;
        font-size: 2.5vh;
      }
      

        
    .content-info{
        position: absolute;
        justify-items: center;
        align-content: start;
        width: 100vw;
        height: 100vh;
        justify-content: center;
        align-items: center;
        transform: translateY(10vh);
        
    }

    .buttons-landing{
        display: flex;
        flex-direction: row;
        gap: 2vh;
        transform: translateY(0vh);
        width: 100vw;
        align-items: center;
        justify-content: center;
        margin-bottom: 5vh;
    }

    .button-landing{
        background-color: #fff;
        padding: 2vh 5vh;
        border-radius: 8vh;
        text-align: center;
        transition: 0.3s ease-in-out;
        width: 20vw;
        border: none;
    }

    .button-landing:hover{
        transform: scale(0.97);
        cursor: pointer;
        transition: 0.3s ease-in-out;
    }


    .button-landing a{
        text-decoration: none;
        color: #000;
        font-family: 'Sofia Pro', sans-serif;
        font-weight: 600;
        font-size: 2vh;
    }



      /* Media query adjustments for very small screens */
      @media (max-width: 1400px) {
        .button-landing{
          width: 30vh;
        }
      }

      /* Media query adjustments for very small screens */
      @media (max-width: 1400px) {
        .button-landing{
          width: 30vh;
        }
      }


      @media (max-width: 431px) {
        #static-layer,
        #dynamic-layer {
          font-size: 9vh;
          /* Do not change transform here; horizontal positioning will come from JS updatePositions() */
        }
        /* You can remove any fixed margin on #dynamic-layer if present */
        #dynamic-layer {
          margin: 0;
        }

        .buttons-landing{
            display: flex;
            flex-direction: column;
        }

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


