/* Base Reset & Typography */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 400;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
}

/* Hero Section */
.hero {
    width: 100%;
    min-height: 400px;
    background: url('../hero.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 0;
}

.hero-overlay {
  background: rgba(44, 62, 80, 0.55);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 60px 20px 40px 20px;
}

.hero-content h1 {
  font-size: 2.8em;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

/* Main Content Container */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Features Section */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0 30px 0;
  justify-content: space-between;
}

.feature {
  flex: 1 1 300px;
  background: #f4f7fa;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(44, 62, 80, 0.06);
  transition: transform 0.2s ease-in-out;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.feature h3 {
  color: #2c3e50;
  font-size: 1.2em;
  margin-bottom: 10px;
  text-align: justify;
}

.feature p {
  color: #000000;
  font-size: 1em;
  text-align: left;

}
.feature ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
}

/* Call-to-Action */
.cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.cta a {
  background: #e74c3c;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.15);
  transition: background 0.3s ease-in-out;
}

.cta a:hover {
  background: #c0392b;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
  }

  .hero-content h1 {
    font-size: 2em;
  }

  .cta a {
    width: 100%;
    text-align: center;
  }
}

ul {
  color: #333;
  font-size: 1.08em;
  margin: 18px 0 18px 22px;
  padding-left: 0;
}

.highlight-warning {
  font-weight: bold;
  color: #e74c3c;
  margin-top: 18px;
}

/* FAQs Content */
.faq-content h1 {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #333;
}
.faq-content {
      max-width: 1000px;
      margin: 0 auto;
      padding: 20px;
    }

    .faq-item {
      background-color: #efefef;
      padding: 18px 50px 18px 50px;
      border-radius: 8px;
      margin-bottom: 16px;
      position: relative;
      display: flex;
      align-items: center;
      cursor: pointer;
    }

    .faq-toggle {
      background: none;
      border: none;
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
      padding: 0;
    }

    .faq-toggle .icon-plus,
    .faq-toggle .icon-minus {
      width: 30px;
      height: 30px;
      pointer-events: none;
    }

    .icon-minus {
      display: none;
    }

    .faq-text {
      flex: 1;
    }

    .faq-answer {
      margin-top: 8px;
      display: none;
      color: #000000;
      font-size: 1em;

    }

    .icon-expand {
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      width: 30px;
      height: 30px;
      pointer-events: none;
    }

/* Footer */
.disclaimer-box {
  background-color: #fef3c7; /* soft yellow */
  border-left: 5px solid #f59e0b; /* amber-500 */
  color: #78350f; /* dark amber text */
  padding: 15px 20px;
  margin-top: 30px;
  font-size: 14px;
  border-radius: 4px;
  line-height: 1.6;
}

.footer {
  background-color: #4c9a6f; /* Dark gray */
  color: #ffffff; /* Light gray text */
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 800;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a,
.footer-section p a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover,
.footer-section p a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #ffffff;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #9ca3af;
}
.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}