* {
    margin: 0;
    padding: 0;
    max-width: 100%;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}


   

    body {

      background: url('./img/bg.png') center/cover no-repeat;
      color: #111;
transition: all 0.3s ease-in-out;
    }


    body.bg1 {
      background: url('./img/bg1.png') center/cover no-repeat;
transition: all 0.3s ease-in-out;
      
    }


    .hero {
      position: relative;
    width: 100%;
      min-height: 100vh;

      padding: 15px 15px 0;


    }



    .content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
    
    }

    .logo-wrap {
      text-align: center;
      margin-top: 2px;
    }

 .wrap {
    max-width: 666px;
    width: 100%;
    margin: 0 auto;
 }

    .headline {
      margin-top: 30px;

      text-align: center;
      font-size:  40px;
      line-height: 1.1;
      font-weight: 700;
      color: #fff;

      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
    }

    .quiz-card {

      margin-top: 30px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.78);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
      padding: 34px 38px 30px;
      backdrop-filter: blur(8px);
    }

    .step {
      text-align: center;
      font-size: 14px;
      color: #9c9c9c;
      margin-bottom: 15px;
      font-weight: 400;
    }

    .question {
      text-align: center;
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 15px;
      color: #171717;
    }

    .answers {
      display: grid;
      gap: 12px;
    }

    .answer {
      border: none;
      width: 100%;
      border-radius: 8px;
      padding: 15px;
      font-size: 18px;
      font-weight: 700;
      color: #141414;
      background: #fff;
      box-shadow: 0 0 0 1px rgba(0,0,0,0.06) inset;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    }

    .answer:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    .answer.active {
background: #F5DA2C;

    }

    .meta {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
      color: #333;
      font-size: 14px;
      margin-top: 28px;
      flex-wrap: wrap;
    }

    .meta-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #333;
    }

    .icon {
      width: 22px;
      height: 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #232323;
    }

    .progress {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 11px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      z-index: 3;
    }

    .progress span:nth-child(1) { background: #073eac; }
    .progress span:nth-child(2) { background: #f1da24; }
    .progress span:nth-child(3) { background: #e21d2c; }


    .quiz {
        display: none;
    }

    .form input {
        display: block;
        border: none;
        background: #FFFFFF;
        font-size: 17px;
        font-weight: 500;
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 8px;
        width: 100%;


    }

    .button1 {
display: block;
        border: none;
background: #F5DA2C;
margin-top: 8px;
        font-size: 18px;
        font-weight: 700;
        color: #000;
        text-align: center;
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 8px;
        width: 100%;
    }
    @media (max-width: 900px) {
         .headline {
            font-size: 24px;
         }

         .question {
            font-size: 20px;
         }
         .quiz-card {
            padding: 20px 15px;
         }
    }
