
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body{
  background:#f6f8f7;
  color:#333;
  line-height:1.7;
}
html{
  scroll-behavior: smooth;
}
section{
    scroll-margin-top: 100px;
}

/* NAVBAR */
.navbar{
  width:100%;
  background:#ffffff;
  box-shadow:0 4px 10px rgba(0,0,0,0.06);
  position:sticky;
  top:0;
  z-index:1000;
}

.nav-container{
  max-width:1100px;
  margin:auto;
  padding:0.5rem 1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-size:2.2rem;
  font-weight:700;
  color:#1b5e20;
}

.logo span{
  color:#2e7d32;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:1.5rem;
}

.nav-links a{
  text-decoration:none;
  font-size:1rem;
  font-weight:500;
  color:#333;
  transition:0.3s;
}

.nav-links a:hover{
  color:#2e7d32;
}

.nav-cta{
  background:#2e7d32;
  color:#fff !important;
  padding:0.5rem 1.2rem;
  border-radius:20px;
  font-weight:600;
  cursor: pointer;
}

.nav-cta:hover{
  background:#1b5e20;
}

/* Hamburger Menu */
.hamburger{
  display:none;
  flex-direction: column;
  gap:5px;
  cursor:pointer;
}

.hamburger span{
  width:25px;
  height:3px;
  background:#2e7d32;
  display:block;
  border-radius:2px;
}

/* MOBILE */
@media(max-width:768px){
  .nav-links{
    position:fixed;
    top:70px;
    right:-100%;
    height:calc(100vh - 70px);
    width:200px;
    background:#ffffff;
    flex-direction:column;
    padding:2rem 1rem;
    gap:1.5rem;
    box-shadow:-4px 0 10px rgba(0,0,0,0.1);
    transition:0.3s;
  }

  .nav-links.active{
    right:0;
  }

  .hamburger{
    display:flex;
  }
  .logo {
    font-size: 1.3rem;
  }
}

/* HERO */
.hero{
  color:#000;
  padding:1rem;
  text-align:center;
}
.sub-hero{
  backdrop-filter:blur(5px);
  background-color: #468DB4;
  border-radius: 10px;
   padding: 1.5rem;
}

.hero h1{
  font-size:2rem;
  line-height: 1.2;
}

.hero p{
  font-size:1.2rem;
  opacity:0.95;
}

.banner-image{
   width: 100%;
}
.banner-image img{
  width: 100%;
}
/* CONTAINER */
.container{
  max-width:1200px;
  margin:auto;
  padding:1.5rem;
}

/* SECTION */
.section{
  padding:1rem 2rem;
}

.section h2{
  color:#1b5e20;
  margin-bottom:1rem;
      line-height: 1.4;
      font-size: 2.2rem;
}
.sub-heading{
  font-size: 2.2rem;
   margin-bottom:0rem;
}
.section p{
  margin-bottom:1.2rem;
  font-size:0.95rem;
}
/* HOW IT WORKS */
.how-it-works {
  margin-top: 2rem;
  padding: 1rem;
}

.how-it-works h2 {
  color: #1b5e20;
}

/* STEPS GRID */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* STEP CARD */
.step-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* STEP NUMBER */
.step-number {
  width: 50px;
  height: 50px;
  background: #2e7d32;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1rem;
  font-size: 1.2rem;
}

/* STEP IMAGE */
.step-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* STEP TITLE */
.step-card h3 {
  font-size: 1.4rem;
  color: #1b5e20;
  margin-bottom: 0.8rem;
}

/* STEP DESCRIPTION */
.step-card p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* DESKTOP VIEW */
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* LARGE DESKTOP VIEW */
@media (min-width: 1200px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-card {
    padding: 2rem;
  }
}


/* BENEFITS – SIMPLE STYLE */
.benefits-simple{
  margin-top:2rem;
}

.benefits-simple p{
  margin-bottom:1.2rem;
  font-size:0.95rem;
}

.benefits-list{
  list-style:none;
  padding-left:0;
}

.benefits-list li{
  position:relative;
  padding-left:1.8rem;
  margin-bottom:1rem;
  font-size:1.2rem;
  line-height:1.6;
}

.benefits-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0.2rem;
  color:#2e7d32;
  font-weight:700;
}

/* DESKTOP */
@media(min-width:768px){
  .benefits-simple p,
  .benefits-list li{
    font-size:1.2rem;
  }
}


/* SIDE BY SIDE LAYOUT */
.split{
  display:flex;
  flex-direction:column;
  gap:1.5rem;
  margin-top:1rem;
}
.split-img{
   display: flex;
  justify-content: center;
  align-items: center;
}
.split-img img{
  width:100%;
  height: 100%;
  border-radius:14px;
  object-fit:cover;
}

.split-content p{
  margin-bottom:1.2rem;
}

/* DESKTOP VIEW */
@media (min-width:768px){
  .split{
    flex-direction:row;
    align-items:center;
  }

  .split-img{
    flex:0.7;
  }
  .split-content{
    flex:1.3;
  }

}



/* HIGHLIGHTS */
.highlights{
  margin:1.5rem 0;
  padding:1.2rem;
  background:#e8f5e9;
  border-radius:12px;
}

.highlights ul{
  list-style:none;
}

.highlights li{
  margin-bottom:0.6rem;
  font-weight:500;
}

/* CTA */
.cta{
  text-align:center;
  margin-top:1.5rem;
  cursor: pointer;
}

.cta a{
  display:inline-block;
  background:#2e7d32;
  color:#fff;
  padding:0.8rem 1.8rem;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  font-size: 1.2rem;
  transition:0.3s;
}

.cta a:hover{
  background:#1b5e20;
}

@media only screen and (max-width:768px) {
      .cta a{
        font-size: 1rem;
      }
}
/* FAQ SECTION */
.faq-section{
  margin-top:2rem;
}

.faq-item{
  border-radius:12px;
  margin-bottom:1rem;
  overflow:hidden;
  background:#f9faf9;
  border:1px solid #e0e0e0;
}

.faq-question{
  width:100%;
  background:#ffffff;
  border:none;
  padding:1rem 1.2rem;
  font-size:1.4rem;
  font-weight:600;
  text-align:left;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  color:#1b5e20;
}

.faq-icon{
  font-size:1.4rem;
  font-weight:700;
  transition:transform 0.3s;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
  background:#f6f8f7;
}

.faq-answer p{
  padding:1rem 1.2rem;
  font-size:0.95rem;
  color:#333;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer{
  max-height:200px;
}

.faq-item.active .faq-icon{
  transform:rotate(45deg);
}

/* MOBILE OPTIMIZATION */
@media(max-width:768px){
  .faq-question{
    font-size:0.95rem;
  }

  .faq-answer p{
    font-size:0.9rem;
  }
}


/* FOOTER */
footer{
  text-align:center;
  padding:1.5rem;
  font-size:0.8rem;
  color:#373737;
}
a{
  text-decoration: none;
}

/* FOOTER DISCLOSURE TEXT */
.footer-bottom p{
  max-width:1200px;
  margin:0.3rem auto;
  padding:0 1rem;
  line-height:1.6;
  font-size:1rem;
  opacity:0.85;
}
.links-footer{
  display: flex;
  justify-content: center;
  gap: 10px;
}
.links-footer a{
  text-decoration: none;
  color: #000;
  font-size: 1rem;
}
.links-footer a li{
  list-style: none;
}
/* MOBILE OPTIMIZATION */
@media(max-width:768px){
  .footer-bottom p{
    font-size:0.7rem;
    line-height:1.5;
  }
}


/* DESKTOP */
@media(min-width:768px){
  .hero h1{
    font-size:2.5rem;
  }

  .section p{
    font-size:1.2rem;
  }
}
@media(max-width:768px){
  .section p{
    font-size:1rem;
  }
  .section h2 {
    line-height: 1.2;
    font-size: 2rem;
}
ul li{
  font-size: 1rem !important;
}
}

/* ====================== QUIZ SECTION ====================== */
.quiz {
  padding: 2rem 2rem;
  background: linear-gradient(135deg, #fef7ff, #e0f7fa);
  position: relative;
  overflow: hidden;
  display: none;
  font-family: 'Inter', sans-serif;
}

/* Wrapper */
.quiz-wrapper {
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ====================== HEADER ====================== */
.quiz-header {
  text-align: center;
  margin-bottom: 3rem;
}

.quiz-badge {
  display: inline-block;
  background: #f9d5ff;
  color: #9b23b6;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.quiz-header h2 {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #172E6F;
}

.quiz-header h2 span {
  color: #22c55e;
}

.quiz-header p {
  font-size: 1rem;
  line-height: 1.5;
  color: #374151;
}

/* ====================== QUIZ CARD ====================== */
.quiz-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 3rem 2.5rem;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

/* ====================== PROGRESS BAR ====================== */
.quiz-progress {
  height: 8px;
  background: #e5e7eb;
  border-radius: 10px;
  margin-bottom: 2rem;
  overflow: hidden;
}

#progress-bar {
  height: 100%;
  width: 0%;
  background: #22c55e;
  border-radius: 10px;
  transition: width 0.4s ease;
}

/* ====================== QUESTIONS ====================== */
.quiz-question {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.quiz-question.active {
  display: block;
}

.quiz-question h3 {
  font-size: 2rem;
  color: #374151;
}
.quiz-question p {
  font-size: 1rem;
  line-height: 1.5;
  color: #374151;
  margin-bottom: 1rem;
}

.quiz-question label {
  display: block;
  padding: 0.5rem 1rem;
  background: #f3f4f6;
  border-radius: 12px;
  margin-bottom: 0.6rem;
  cursor: pointer;
  transition: background 0.3s ease, border 0.3s ease;
  border: 2px solid transparent;
}

.quiz-question label:hover {
  background: #e0f7fa;
  border-color: #22c55e;
}

.quiz-question input[type="radio"] {
  display: none;
}

.quiz-question label:has(input:checked) {
  background: #e0f7fa;
  border-color: #10b981;
}

/* ====================== CONTACT STEP ====================== */
.quiz-contact-note {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.2rem;
}

.consent {
  font-size: 0.85rem;
  color: #4b5563;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

/* ====================== BUTTONS ====================== */
.quiz-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.btn-primary {
  background: #172E6F;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #1a3a85;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #4ade80;
  color: #4ade80;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #4ade80;
  color: #fff;
  transform: translateY(-2px);
}

/* ====================== ANIMATIONS ====================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
  .quiz-card {
    padding: 2rem 1.5rem;
  }
  .quiz-question h3 {
    font-size: 1.5rem;
  }
 
  .container {
    padding: 0.5rem;
}
.section {
    padding: 2rem 1rem;
}
}

@media (max-width: 480px) {
  .quiz {
    padding: 2rem 1rem;
  }
  .quiz-header h2 {
    font-size: 1.8rem;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

