/* Existing styles */
.nav-trigger {
  cursor: pointer;
}
.hamburger-line {
  width: 30px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  transition: 0.4s;
}
.nav-trigger.open .top {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.nav-trigger.open .middle {
  opacity: 0;
}
.nav-trigger.open .bottom {
  transform: rotate(45deg) translate(-11px, -12px);
}
.menu-wrapper.active {
  display: block !important;
}
body.menu-open {
  overflow: hidden;
}
section {
  padding : 60px 20px;
}
.animate-fade-in, .animate-zoom, .animate-fly-in, .animate-slide-left, .animate-slide-right, .animate-slide-up, .animate-rotate, .animate-bounce {
  opacity: 0;
}
.faq-section {
    z-index: 1;
    background-color: var(--01);
    padding-top: 2%;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
}
/* Accordion Styles (for FAQ and reused from about.html) */
#faq {
  position: relative;
  z-index: 1;
  background-color: var(--01);
  padding-top: 2%;
  padding-left: 30px;
  padding-right: 30px;
  position: relative
}
.faq .question-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  background: #30742a;
  color: #fff;
}
.faq .question-block h4 {
  margin: 0;
  font-size: 24px;
}
.faq .answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease;
  background: #fff;
  color: #333;
}
.faq .answer p {
  padding: 15px 0;
}
.faq.active .answer {
  max-height: 200px; /* Adjust based on content */
}
.faq-image {
  max-width: 60%;
  height: auto;
  margin-top: -35%;
  z-index: -1;
  position: absolute;
  right: -160px;
}
/* Contact Details Styles */
.contact-details-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-item {
  text-align: center;
  max-width: 300px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
.contact-item h4 {
  font-size: 24px;
  margin-bottom: 10px;
}
.contact-item p {
  margin: 0;
}

/* Contact Form Styles */
.form-block {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 300px;
  margin: 0 auto;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #fff;
}
.form-field label {
  font-size: 18px;
  margin-bottom: 5px;
  color: #fff;
}
.form-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
.form-textarea {
  min-height: 150px;
  resize: vertical;
}
.privacy-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.privacy-checkbox input {
  width: 20px;
  height: 20px;
}
.privacy-checkbox label {
  font-size: 16px;
}
.privacy-checkbox a {
  text-decoration: underline;
}
a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #ccc;
}
.quick-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.quick-link:hover {
  color: #ccc;
}
/* Responsive Adjustments */
@media screen and (max-width: 767px) {
  .contact-details-content {
    flex-direction: column;
    align-items: center;
  }
  .contact-item {
    margin-bottom: 20px;
  }
  .form-block {
    padding: 0 20px;
  }
}