@import url("./fonts.googleapis.com/css2/index.html");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "THICCCBOI","Poppins", sans-serif;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333333;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 80px;
  background-color: #ffff;
  border-bottom: 0.5px solid rgb(199, 197, 197);
}

.logo img {
  max-width: 180px;
}

.contact-info {
  text-align: right;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-info span {
  font-weight: bold;
  color: #555555;
}

.call-button {
  display: flex;
  align-items: center;
  background-color: rgb(46, 204, 113);
  color: white;
  border: none;
  padding: 19px 30px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.call-button img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.main-content {
  text-align: center;
}

.main-content > .container {
  margin-left: 192px;
  margin-right: 192px;
}

.main-content h1 {
  font-size: 28px;
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 39.2px;
  text-align: center;
}

.main-content h1 span {
  color: red;
  font-weight: bold;
}

.main-image img {
  max-width: 70%;
  height: auto;
  margin: 10px 0;
}

.info-section {
  text-align: left;
  margin: 10px 0;
}

.info-section p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 28.8px;
  color: #333333;
}

.info-section > p > span {
  color: #222222;
}

.info-section h2 {
  font-size: 22px;
  margin: 20px 0 10px;
}

.info-section span {
  font-weight: bold;
  color: red;
}

.quiz-button {
  display: block;
  width: 100%;
  padding: 5px 0;
  font-size: 19px;
  text-align: center;
  border: none;
  margin-top: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.question {
  display: none; /* Hide all questions initially */
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

#question1 {
  display: block; /* Show the first question initially */
  opacity: 1;
}
.fade-section {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: none;
  text-align: center;
  padding: 40px;
  margin: 10px 0;
  border-top: 5px solid navy; /* The blue line at the top */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds shadow effect */
}

.fade-in {
  opacity: 1;
  transition: opacity 1s;
}

.fade-out {
  opacity: 0;
  transition: opacity 1s;
}

.answer-button {
  display: block;
  width: 100%;
  background-color: rgb(46, 204, 113);
  padding: 15px 0;
  font-size: 24px;
  text-align: center;
  border: none;
  margin-top: 20px;
  font-weight: bold;
  cursor: pointer;
  color: white;
  border-radius: 3px;
}

.answer-button:hover {
  color: #333333;
}

.finalsection {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px 34px;
}
.finalsection h3 {
  color: #2fbdaa;
  font-size: 26px;
}
.finalsection h1 {
  font-size: 35px;
}
.question-section{
   border-bottom: 1px solid #222222;
   padding-bottom: 4rem;
}
.finalsection .call-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 100%;
  font-weight: bold;
  background-color: rgb(46, 204, 113);
  padding: 20px 0px;
  margin-bottom: 20px;
}
.finalsection .call-button:hover {
  color: #222222;
}
.finalsection p {
  font-size: 18px;
  line-height: 25.5px;
  margin-top: 20px;
  margin-bottom: 20px;
}
footer{
  margin-left: 192px;
  margin-right: 192px;
}
footer > p {
  color: #7a7a7a;
  font-size: 12px;
  line-height: 18px;
  padding: 10px 0;
}
@media screen and (max-width: 600px) {
  .header {
    padding: 10px 10px;
  }

  .logo img {
    max-width: 140px;
  }

  .contact-info {
    text-align: right;
  }

  .contact-info p {
    font-size: 12px;
  }

  .contact-info span {
    font-weight: bold;
    color: #555555;
  }

  .call-button {
    padding: 10px 10px;
    font-size: 12px;
  }

  .call-button img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
  }

  .main-content h1 {
    font-size: 24px;
    line-height: 28px;
  }
  .main-image img {
    max-width: 80%;
    margin: 10px 0;
  }

  .info-section p {
    font-size: 16px;
  }

  .info-section h2 {
    font-size: 20px;
  }

  .quiz-button {
    font-size: 16px;
  }
  
  footer, .main-content > .container {
    margin-left: 12px;
    margin-right: 12px;
  }
  footer > p {
    color: #7a7a7a;
    font-size: 12px;
    line-height: 18px;
    padding: 20px 10px;
    text-align: left;
  }
  .finalsection {
    margin: 0;
  }

  .finalsection h1 {
    font-size: 25px;
  }

  .finalsection p {
    font-size: 18px;
    line-height: 25.5px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

  .f8-container {
            background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
            border-radius: 20px;
            padding: 40px;
            width: 100%;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .f8-main-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .f8-subtitle {
            font-size: 1.1rem;
            color: #7f8c8d;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .f8-phone-info {
            font-size: 1rem;
            color: #7f8c8d;
            margin-bottom: 30px;
        }

        .f8-phone-number {
            color: #2c3e50;
            font-weight: bold;
            text-decoration: underline;
        }

        .f8-cta-button {
            background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            margin-bottom: 15px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
        }

        .f8-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
        }

        .f8-phone-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .f8-stars {
            margin-bottom: 30px;
        }

        .f8-star {
            font-size: 2rem;
            color: #f39c12;
            margin: 0 3px;
            filter: drop-shadow(0 2px 4px rgba(243, 156, 18, 0.3));
        }

        .f8-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px 40px;
            margin-top: 20px;
        }

        .f8-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
            color: #34495e;
            text-align: left;
        }

        .f8-checkmark {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 3px 8px rgba(243, 156, 18, 0.3);
        }

        .f8-checkmark::after {
            content: '✓';
            color: white;
            font-weight: bold;
            font-size: 14px;
        }

        .f8-feature-text {
            font-weight: 500;
        }

        .f8-highlight {
            font-weight: bold;
            color: #2c3e50;
        }

        @media (max-width: 600px) {
            .f8-container {
                padding: 30px 20px;
            }
            
            .f8-main-title {
                font-size: 2rem;
            }
            
            .f8-features {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .f8-feature {
                justify-content: center;
                text-align: center;
            }
        }


.f8-cta-button {
   background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
   color: #fff;
   padding: 25px 30px;
  border: 1px solid black;
   border-radius: 12px;
   font-size: 1.1rem;
   font-weight: bold;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.f8-cta-button-h {
     background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
   color: #fff;
  border: 1px solid black;
   border-radius: 12px;
   font-size: 1.1rem;
   font-weight: bold;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.f8-phone-icon {
   width: 20px;
   height: 20px;
   fill: currentColor;
   animation: f8-shake 1.5s ease-in-out infinite;
}

@keyframes f8-pulse {
   0%, 100% {
       transform: translateY(0px);
   }
   50% {
       transform: translateY(-3px);
   }
}

@keyframes f8-shake {
   0%, 100% {
       transform: rotate(0deg);
   }
   10%, 30%, 50%, 70%, 90% {
       transform: rotate(-10deg);
   }
   20%, 40%, 60%, 80% {
       transform: rotate(10deg);
   }
}