:root {
        --safe-padding: clamp(16px, 4vw, 40px);
        --logo-max-width: min(72vw, 460px);
        --cta-max-width: min(92vw, 560px);
      }

      * {
        box-sizing: border-box;
      }

      html,
      body {
        width: 100%;
        min-height: 100%;
        margin: 0;
      }

      body {
        min-height: 100vh;
        min-height: 100svh;
        font-family:  "Montserrat","Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        position: relative;
      }

      body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        background-image: url("../assets/background.jpg");
        background-repeat: no-repeat;
        background-position: top center;
        background-size: 280%;
      }
    

      .landing {
        min-height: 100vh;
        min-height: 100svh;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: var(--safe-padding);
        padding-right: var(--safe-padding);
      }

      .main-block {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }

      .logo {
        width: 100%;
        max-width: var(--logo-max-width);
        height: auto;
        display: block;
      }

      .actions {
        width: 100%;
        max-width: var(--cta-max-width);
        margin-top: clamp(24px, 6vh, 64px);
        display: grid;
        gap: clamp(12px, 2vh, 24px);
      }

      .cta {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        min-height: clamp(56px, 8vh, 78px);
        padding: 12px 20px;
        border-radius: 999px;
        border: none;
        background: #ffd400;
        color: #ffffff;
        text-decoration: none;
        text-align: center;
        font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        font-size: 25px;
        font-weight: 800;
        line-height: 1.1;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
      }

      .cta:focus-visible {
        outline: 3px solid #ffffff;
        outline-offset: 3px;
      }

     .header {
        /*background-color: rgba(0, 0, 0, 0.15);
        padding:1rem;
        border-radius: 999px;*/
        display: flex;
        width: 100%;
        max-width: var(--cta-max-width);
        justify-content: space-around;
        align-items: center;
        margin-bottom: clamp(20px, 5vh, 40px);
      }

      .footer {
        /*background-color: rgba(0, 0, 0, 0.15);
        padding:1rem;
        border-radius: 999px;*/
        display: flex;
        width: 100%;
        max-width: var(--cta-max-width);
        align-items: center;
        justify-content: center;
        margin-top: clamp(40px, 5vh, 60px);
      }
      .footer img{
        height: 65px;
        margin:0px 30px;
      }

      .col-auto{
        flex: 0 0 auto;
        width: auto ;
      }
      @media (max-width: 480px) {
        :root {
          --logo-max-width: min(80vw, 330px);
        }

        .actions {
          margin-top: clamp(20px, 5vh, 36px);
        }
      }

      @media (min-width: 768px) {
        body::before {
          background-size: 180%;
        }
      }

      @media (min-width: 1280px) {
        body::before {
          background-size: cover;
        }
         .cta{
            font-size: 28px;
        }
      }

   @media (min-width: 1460px) {
        body::before {
          background-size: cover;
            background-position: center -200px;
        }
        .cta{
            font-size: 30px;
            font-weight: 400;
        }
      }
