   * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      background: #000;
      color: #fafafa;
      line-height: 1.5;
    }

    a {
      text-decoration: none;
      color: inherit;
      cursor: pointer;
    }

    /* Navbar */
    nav {
      position: sticky;
      top: 0;
      background: #000;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      z-index: 9999;
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.75rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-weight: 700;
      font-size: 1.5rem;
      color: #fff;
      letter-spacing: 1px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .nav-links a {
      font-weight: 600;
      font-size: 1rem;
      transition: color 0.3s ease;
    }

    .nav-links a:hover {
      color: #f09433;
    }

    .cta-btn {
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
      color: white;
      border: none;
      padding: 0.5rem 1.25rem;
      font-weight: 700;
      font-size: 1rem;
      border-radius: 25px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .cta-btn:hover {
      background: linear-gradient(45deg, #bc1888 0%,  #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background-color: #fff;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 60px;
        right: 0;
        background: #000;
        color: #fff;
        height: calc(100vh - 60px);
        width: 100%;
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 4rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 9998;
      }

      .nav-links.open {
        transform: translateX(0);
      }

      .cta-btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
        font-size: 1.1rem;
      }

      .hamburger {
        display: flex;
      }
    }

    /* Hero Section */
    .hero {
      /* background: #fff; */
      padding: 4rem 1rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-content {
      max-width: 1200px;
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      align-items: center;
      justify-content: space-between;
    }

    .text {
      flex: 1;
      min-width: 300px;
    }

    .text h1 {
      font-size: 2.5rem;
      color: #dc2743;
      margin-bottom: 0.5rem;
    }

    .text h2 {
      font-size: 1.75rem;
      color:  #f09433;
      margin-bottom: 1.25rem;
    }

    .text p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 2rem;
      color: #fafafa; /* dark gray */
    }

    .hero .cta {
      background:linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
      color: #fff;
      border: none;
      padding: 1rem 2rem;
      font-size: 1.25rem;
      font-weight: 700;
      border-radius: 35px;
      cursor: pointer;
      transition: background 0.3s ease;
      display: block;
      margin: 0 auto; /* center horizontally */
      text-align: center;
    }

    .hero .cta:hover {
      background: linear-gradient(45deg, #bc1888 0%,  #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    }

    .image {
      flex: 1;
      min-width: 280px;
      display: flex;
      justify-content: center;
    }

    .image img {
      max-width: 100%;
      height: auto;
      max-height: 400px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    /* Problem Section - unified colors to hero */
    .problem-section {
      /* background-color: #fff; same as hero bg */
      padding: 4rem 1rem;
      color: #dc2743; /* same main text color as hero */
    }

    .problem-section .container {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .problem-section .headline {
      font-size: 2rem;
      color: #dc2743; /* emerald green */
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .problem-section .subheadline {
      font-size: 1.125rem;
      margin-bottom: 2rem;
      color: #f09433; /* dark greenish */
    }

    .problem-section .problem-list {
      text-align: left;
      list-style: none;
      padding-left: 0;
      margin-bottom: 2rem;
      color: #fff; /* dark gray text */
    }

    .problem-section .problem-list li {
      position: relative;
      padding-left: 2rem;
      margin-bottom: 1.2rem;
      font-size: 1.05rem;
    }

    .problem-section .problem-list li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #046A38; /* emerald green check */
      font-weight: bold;
    }

    .problem-section .reframe {
      font-size: 1.1rem;
      font-weight: 500;
      color: #e6683c; /* dark charcoal */
    }

    /* Solution Section - unified colors */
    .solution-section {
      padding: 4rem 1rem;
      background-color: #000; /* same as hero bg */
      color: #fff; /* same main text color */
    }

    .solution-container {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .solution-text {
      flex: 1;
      min-width: 300px;
    }

    .solution-text h2 {
      font-size: 2rem;
      color: #f09433; /* emerald green */
      margin-bottom: 1rem;
    }

    .solution-text p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1rem;
      color: #fff; /* dark gray */
    }

    .solution-text .cta {
      display: inline-block;
      background:linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
      color: #fff;
      padding: 1rem 2rem;
      border-radius: 35px;
      font-weight: 700;
      font-size: 1.25rem;
      text-decoration: none;
      margin-top: 1rem;
      box-shadow: 0 10px 25px rgba(4, 106, 56, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
    }

    .solution-text .cta:hover {
      background: linear-gradient(45deg, #bc1888 0%,  #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
      transform: translateY(-2px);
    }

    .solution-image {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }

    .solution-image img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    /* Responsive layout */
    @media (max-width: 768px) {
      .solution-container {
        flex-direction: column;
      }

      .solution-image {
        order: 2;
      }

      .solution-text {
        order: 1;
      }

      .solution-text h2 {
        font-size: 1.5rem;
        text-align: center;
      }

      .solution-text .cta {
        display: block;
        width: 100%;
        text-align: center;
      }
    }

.benefit-section {
  background-color: #000; /* same light green bg */
  padding: 4rem 1rem;
  color: #fff; /* main text */
  text-align: center;
}

.benefit-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-section h2 {
  font-size: 2rem;
  color: #f09433; /* emerald green */
  font-weight: 700;
  margin-bottom: 2rem;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}

.benefit-item {
  background: #000;
  border-radius : 12px;
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
  padding: 2rem 1.5rem;
  flex: 1 1 280px;
  max-width: 320px;
  text-align: left;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.5);
}

.benefit-icon {
  font-size: 3rem;
  color: #046A38;
  margin-bottom: 1rem;
  user-select: none;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e6683c;
  margin-bottom: 0.6rem;
}

.benefit-description {
  font-size: 1rem;
  color: #fafafa;
  line-height: 1.5;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .benefits-list {
    flex-direction: column;
    align-items: center;
  }

  .benefit-item {
    max-width: 90%;
  }
}

.action-plan-section {
  background-color: #000;
  padding: 4rem 1rem;
  color: #fff;
  text-align: center;
}

.action-plan-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.action-plan-section h2 {
  font-size: 2rem;
  color: #f09433;
  font-weight: 700;
  margin-bottom: 2rem;
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: left;
}

.step {
  flex: 1 1 260px;
  background: #000;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.5);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #dc2743;
  margin-bottom: 1rem;
  user-select: none;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #f09433;
}

.step-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    max-width: 90%;
    text-align: center;
  }
}

.testimonial-section {
  background-color: #000;
  padding: 4rem 1rem;
  color: #fff;
  text-align: center;
}

.testimonial-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-section h2 {
  font-size: 2rem;
  color: #f09433;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.testimonials {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #000;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 15px rgba(4, 106, 56, 0.15);
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.5);
}

.pull-quote {
  font-weight: 700;
  font-size: 1.25rem;
  color: #cc2366;
  margin-bottom: 0.5rem;
}

.stars {
  color: #10b981; /* bright emerald */
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(4, 106, 56, 0.25);
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 700;
  color: #f09433;
}

.author-role {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    max-width: 90%;
    text-align: center;
  }

  .testimonial-author {
    justify-content: center;
  }

  .author-info {
    text-align: center;
  }
}

.faq-section {
  background-color: #000;
  padding: 4rem 1rem;
  color: #fff;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.faq-section h2 {
  font-size: 2rem;
  color: #f09433;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #c1d7ca;
  padding-bottom: 1rem;
}

.faq-question {
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  position: relative;
  padding-right: 1.5rem;
  color: #fff;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #f09433;
  display: none;
  line-height: 1.5;
}

.faq-answer.show {
  display: block;
}

/* CTA Section */
.final-cta {
  background-color: #000;
  text-align: center;
  padding: 3rem 1rem 6rem;
}

.final-cta h2 {
  font-size: 2rem;
  color: #f09433;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.final-cta .cta {
  background:linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);;
  color: white;
  border: none;
  padding: 1.25rem 3rem;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 35px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
  text-align: center;
}

.final-cta .cta:hover {
  background: linear-gradient(45deg, #bc1888 0%,  #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);;
}

footer {
  background-color: #000;
  color: white;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-left p {
  margin-bottom: 0.3rem;
}

.footer-left a {
  color: #fff;
  text-decoration: underline;
}

.footer-left a:hover {
  color: #f09433;
}

.footer-right a {
  color: #fff;
  margin-left: 1.2rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-right a:first-child {
  margin-left: 0;
}

.footer-right a:hover {
  color: #f09433;
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right a {
    margin: 0 0.5rem;
  }
}


