body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f4f4f4;
      color: #222;
    }

    a {
      text-decoration: none;
      color: black;
    }

    .container {
      max-width: 1000px;
      margin: auto;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .video-container {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 8px;
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 8px;
    }

    .promo-image {
      width: 100%;
      border-radius: 8px;
      max-width: 600px;
      align-self: center;
    }

    h1 {
      text-align: center;
      color: #0a7f54;
    }

    .description {
      font-size: 1.1rem;
      line-height: 1.6;
      text-align: center;
    }

    .cta {
      display: flex;
      justify-content: center;
      margin: 20px 0;
    }

    .cta a {
      background-color: #0a7f54;
      color: white;
      padding: 14px 28px;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1.1rem;
      transition: background 0.3s ease;
    }

    .cta a:hover {
      background-color: #095d3f;
    }

    .faq-section {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  margin-bottom: 5px;
  color: #0a7f54;
  font-size: 1.1rem;
}

.faq-item p {
  margin: 0;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.whatsapp-link {
    color: #25d366;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    margin-top: 10px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .description {
    font-size: 1rem;
    padding: 0 10px;
}
  .cta a {
    font-size: 1rem;
    padding: 12px 20px;
  }
}
@media (max-width: 480px) {
  .cta {
    flex-direction: column;
    align-items: center;
  }
  .promo-image {
    width: 100%;
  }
}