/* Modern Footer Styles */
.footer-modern {
  background-color: #032a49;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif!important;
  padding: 40px 20px 20px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 300px;
  min-width: 280px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 2px solid #21cd99;
  padding-bottom: 8px;
  color: whitesmoke /* Updated to match favicon and logo color */
}

.footer-section p,
.footer-section address {
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-section address {
  font-style: normal;
}

.footer-section a {
  color: #21cd99;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: #ffffff;
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #21cd99;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #21cd99;
}

.footer-contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-form input,
.footer-contact-form textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  resize: vertical;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
  outline: 2px solid #21cd99;
  background-color: #f0f9f8;
}

.footer-contact-form button {
  background-color: #21cd99;
  color: #ffffff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-contact-form button:hover {
  background-color: #1a9e7a;
}

.footer-bottom {
  border-top: 1px solid #144d3a;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #a0cfc1;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-info p {
  margin: 0;
}

.footer-disclaimer {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
  font-size: 12px;
  color: #a0cfc1;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .footer-info {
    flex-direction: column;
    gap: 5px;
  }
}
