    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    a{
      text-decoration: none;
      color: inherit;
    }
    .hero-section {
      background-color: #1E90FF;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
      text-align: center;
    }

    .headline {
      color: #FFFFFF;
      font-size: 28px;
      font-weight: bold;
      max-width: 800px;
      line-height: 1.3;
      margin-bottom: 30px;
    }

    .carousel-container {
      position: relative;
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
    }

    .carousel-image {
      width: 100%;
      height: 360px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      display: none;
    }

    .carousel-image.active {
      display: block;
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 12px;
    }

    .carousel-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.5);
      border: none;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .carousel-dot.active {
      background-color: #FFFFFF;
    }

    .subheadline {
      color: #FFFFFF;
      font-size: 18px;
      max-width: 700px;
      line-height: 1.5;
      margin-top: 25px;
    }

    .cta-text {
      color: #FFD700;
      font-size: 20px;
      font-weight: bold;
      margin-top: 10px;
    }

    .question {
      color: #FFFFFF;
      font-size: 28px;
      font-weight: 900;
      letter-spacing: 1px;
      margin-top: 23px;
    }

    .buttons-container {
      display: flex;
      gap: 20px;
      margin-top: 25px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .hero-button {
      background-color: #FFFFFF;
      color: #1E90FF;
      font-size: 20px;
      font-weight: bold;
      padding: 16px 70px;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .hero-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .footer {
      background-color: #EDEDED;
    }

    .disclaimer-section {
      border-top: 4px solid rgba(30, 144, 255, 0.2);
      padding: 25px 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .disclaimer-section p {
      color: #333333;
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .disclaimer-section p:last-child {
      margin-bottom: 0;
    }

    .disclaimer-section strong {
      font-weight: bold;
    }

    .footer-links {
      background-color: #E5E5E5;
      padding: 15px 20px;
      text-align: center;
    }

    .footer-links a {
      color: #1E90FF;
      text-decoration: none;
      font-size: 14px;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    .footer-links span {
      color: #666666;
      margin: 0 10px;
    }

    @media (max-width: 600px) {
  .headline {
    font-size: 20px;
  }

  .carousel-image {
    height: 320px;
    border-radius: 0;
  }

  .subheadline {
    font-size: 14px;
  }

  .cta-text {
    font-size: 12px;
  }

  .question {
    font-size: 19px;
    margin-top: 5px;
  }

  .buttons-container {
    flex-direction: row;          /* keep side by side */
    margin-top: 5px;
    gap: 12px;                    /* smaller gap for mobile */
  }

  .hero-button {
    padding: 14px 32px;           /* reduce width */
    font-size: 16px;
    min-width: 120px;             /* keeps them balanced */
  }
}

/* HEADER */
.top-header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 12px 24px;   /* more right spacing */
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo img {
  height: 42px;
}

/* CALL BUTTON */
.call-btn {
  background: #58b957;
  color: #fff;
  padding: 14px 26px;        /* BIGGER */
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;           /* BIGGER TEXT */
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}


.call-btn span {
  font-size: 12px;
  font-weight: normal;
  opacity: 0.9;
}

/* MOBILE TWEAKS */
@media (max-width: 600px) {
  .logo img {
    height: 34px;
  }

  .call-btn {
    padding: 8px 14px;
    font-size: 14px;
  }

  .call-btn span {
    font-size: 11px;
  }
}
