 @import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/* Now you can use the font in your styles */

body {
    font-family: "Urbanist", sans-serif;
    background: #fafafa;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url("../img/bg.jpg");
  }
  .quiz-container {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 900px;
    width: 90%;
  }
  .quiz-image {
    flex: 1;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
  }
  .quiz-image img {
    max-width: 100%;
    height: auto;
  }
  .quiz-content {
    flex: 1.2;
    padding: 40px;
  }
  .text-block {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 25px;
  }
  .question {
    font-size: 30px;
    font-weight: 600;
    color: #111;
    margin-bottom: 20px;
  }
   .answers {
  text-align: center;
}
.headline
{
    font-size: 28px;
}
.answers button {
  width: 60%;
  margin: 8px auto;
  padding: 14px 20px;
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
  color: black;
  font-weight: 600;
}

/* .answers button:hover {
  background: #ff4b4b;
  color: #fff;
} */

  .result {
    margin-top: 25px;
    padding: 20px;
    background: #fdf2f2;
    border-left: 5px solid #ff4b4b;
    display: none;
  }
  .result iframe {
    margin-top: 15px;
    border-radius: 8px;
  }
  .info {
    font-size: 14px;
    color: #333;
    margin-top: 20px;
    font-weight: 500;
  }
  .info a {
    color: #d12d2d;
    font-weight: bold;
    text-decoration: none;
  }
  .link-img {
    height: 24px;
    width: 34px;
    vertical-align: middle;
  }
  .benefit-list {
  list-style: none; /* removes default bullets */
  padding-left: 0;  /* remove left padding */
  margin: 0;        /* optional: remove default margin */
}

.benefit-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.benefit-list i {
  color: #ff4b4b; /* icon color */
  margin-right: 10px;
  font-size: 18px;
  min-width: 20px; /* aligns text nicely even if icons vary */
}

  @media (max-width: 800px) {
    .quiz-container {
      flex-direction: column;
    }
    .quiz-image {
      order: 1;
      padding: 20px;
    }
    .quiz-content {
      order: 2;
      padding: 20px;
    }
  }
