/* Footer Styles */
.footer-section {
  background-color: #145840; /* Your requested primary color */
  color: #ffffff;
  padding: 40px 0 20px;
  width: 100%;
}

/* Title Row */
.footer-title-row {
  margin-bottom: 35px;
}

.footer-heading {
  color: #ffffff;
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  font-family
}

/* Content Layout */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 0px;
  padding: 0;
}

.faq-column {
  flex: 2; /* Make FAQ column wider */
}

.footer-column h3 {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
  vertical-align: top;
  line-height: 2;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.3s ease;
  display: flex;
}

.footer-links a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #ffffff !important;
  font-size: 1.8rem;
  transition: opacity 0.3s ease;
}

.social-icons a:hover {
  opacity: 0.8;
}

/* FAQ Dropdown */
.faq-dropdown {
  cursor: pointer;
  position: relative;
}

.faq-dropdown-heading {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-dropdown h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 15px;
}

.faq-dropdown h3 i {
  transition: transform 0.3s ease;
}

.faq-dropdown.active h3 i {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-dropdown.active .faq-content {
  max-height: 1000px;
}

.faq-item {
  margin-top: 15px;
}

.faq-item h4 {
  font-size: 14px;
  margin-bottom: 5px;
  color: #ffffff;
  font-weight: 600;
}

.faq-item p {
  font-size: 14px;
  margin: 0px;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.9);
}

/* Copyright Section */
.copyright {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright p {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-content {
    flex-wrap: wrap;
  }

  .footer-column {
    flex: 1 0 50%;
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .footer-column {
    flex: 1 0 100%;
  }
}