 body {
      font-family: 'Helvetica Neue', sans-serif;
      background: #f9f9f9;
      margin: 0;
      padding: 40px;
     
  padding-top: 180px;  
  padding-bottom: 100px;
  box-sizing: border-box;
 }

    .faq-section {
      max-width: 80%;
      margin: 0 auto;
      padding-top: 150px;
    }
    /* Ensure spacing for includes */
    #navbar-container,
    #sidebar-container,
    #whatsapp-container {
      margin-bottom: 20px;
    }

  

#navbar-container,
#sidebar-container,
#whatsapp-container {
  margin-bottom: 20px;
}

#footer-container {
  margin-top: 80px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 500;
  font-family: 'Georgia', serif;
  margin-bottom: 30px;
  text-align: center;
}

.faq-title span {
  font-style: italic;
  font-weight: 500;
  color: #2b2289;
}

.faq-search {
  width: 44%;
  padding: 15px 14px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 13px;
  margin-bottom: 30px;
  transition: box-shadow 0.3s;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.faq-search:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(143, 143, 143, 0.4);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 60px;
}

.faq-item {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-item h3:hover {
  color: #5c5c5c;
}

.faq-answer-wrapper {
  overflow: hidden;
  max-height: 4.8em;
  transition: max-height 0.6s ease;
  position: relative;
}

.faq-answer-wrapper.expanded {
  max-height: 1000px;
}

.faq-answer {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  opacity: 0.9;
}

.faq-answer-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2em;
  width: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #f9f9f9);
  transition: opacity 0.3s ease;
}

.faq-answer-wrapper.expanded::after {
  opacity: 0;
  pointer-events: none;
}

.milestone-desc {
  color: red;
}

.show-toggle {
  color: #000000;
  font-size: 0.9rem;
  margin-top: 8px;
  display: inline-block;
  cursor: pointer;
  transition: color 0.3s ease;
}

.show-toggle:hover {
  color: #949494;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  body {
    padding: 20px;
  }

  .faq-title {
    font-size: 2rem;
    text-align: center;
  }

  .faq-search {
    width: 100%;

  }


  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-item h3 {
    font-size: 1.1rem;
  }

  .faq-answer {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 1.6rem;
  }

  .faq-search {
    padding: 12px;
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}




.footer {
    background-color: white;
    padding: 40px 0 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Creates 4 equal columns */
    gap: 30px; /* Even spacing between columns */
    padding: 0 40px;
}


.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.connect-section {
    margin-top: 20px;
}

/* Style for all section headings */
.footer-column h3 {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

h4 {
    color: #333;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.office-info {
    margin-bottom: 20px;
}

.office-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.links-section {
    display: flex;
    gap: 40px;
}

.footer-column a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    display: block;
}

.links-column a:hover {
    color: #333;
}

.contact-info {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Bottom Bar */
.footer-bottom {
    background-color: #1e1e8f;
    padding: 15px 40px; /* Added horizontal padding */
    margin-top: 40px;
    display: flex;
    justify-content: space-between; /* This will push items to opposite ends */
    align-items: center;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.copyright {
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.heart {
    color: red; /* Make the heart red */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
        gap: 10px;
    }

    .bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }

    .links-section {
        flex-direction: column;
        gap: 20px;
    }

  

    .copyright {
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        width: 60%;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .primary-text,
    .secondary-text {
        font-size: 3rem;
    }
}

/* Medium devices (tablets, 992px and down) */
@media (max-width: 992px) {
    .hero-content {
        width: 70%;
    }

    .about-container,
    .offer-container {
        flex-direction: column;
        gap: 40px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .primary-text,
    .secondary-text {
        font-size: 2.75rem;
    }
}

/* Small devices (landscape phones, 768px and down) */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
    }

    .hero-content {
        width: 90%;
        padding: 2rem;
    }

    .primary-text,
    .secondary-text {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
    .hero {
        padding: 0 15px;
    }

    .hero-content {
        width: 100%;
        padding: 1.5rem;
        margin-top: 100px;
    }

    .primary-text,
    .secondary-text {
        font-size: 2rem;
    }

    .about-us,
    .what-we-offer,
    .partners {
        padding: 40px 5%;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .btn-learn-more,
    .btn-get-started {
        width: 100%;
        text-align: center;
    }
}

/* Additional responsive improvements */
@media (max-width: 400px) {
    .primary-text,
    .secondary-text {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .navbar {
        padding: 10px;
    }

    .logo img {
        width: 70%;
    }
}

/* Fix for navigation on medium devices */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        height: 100vh;
        width: 100%;
        background: white;
        flex-direction: column;
        transition: 0.3s ease;
        padding: 20px;
    }

    .nav-links.active {
        left: 0;
    }

    .auth-buttons {
        flex-direction: column;
        width: 100%;
    }

    .login-btn,
    .signup-btn {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    text-align: center;
    gap: 20px;
    padding: 0 20px;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items inside each column */
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    gap: 10px;
  }

  .bottom-links {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    display: flex;
    gap: 10px;
  }

  .copyright {
    text-align: center;
  }
}

/* Add smooth scrolling for better mobile experience */
html {
    scroll-behavior: smooth;
}




