.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright-text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal-links .link-3 {
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

.footer-legal-links .link-3:hover {
  color: #2fad46;
}

.footer-copyright-text .link-3 {
  color: #4c9897;
  text-decoration: none;
  font-weight: 600;
}

.footer-copyright-text .link-3:hover {
  text-decoration: underline;
}

.footer-faq-dropdown {
  width: 100%;
}

.footer-faq-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: transparent;
  font-family: Inter, sans-serif;
  text-align: left;
  cursor: pointer;
}

.footer-faq-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 10px 0 5px 15px;
}

.footer-faq-menu .footer-link {
  font-size: 14px;
}

.footer-faq-dropdown.active .footer-faq-menu {
  display: flex;
}

.faq-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-faq-dropdown.active .faq-arrow {
  transform: rotate(180deg);
}

@media (max-width:768px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width:768px) {
  .footer-copyright-text {
    justify-content: center;
  }
}

@media (max-width:768px) {
  .footer-legal-links {
    justify-content: center;
    gap: 18px;
  }
}

