/* Footer Styles */

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 0 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-logo {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-mission {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.footer-heading {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #3498db;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-link {
  color: #bdc3c7;
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: #3498db;
}

.contact-info {
  font-style: normal;
  font-size: 0.95rem;
}

.contact-info p {
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 2.2rem;
  margin-bottom: 1.5rem;
}

.social-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
  transform: translateY(-3px);
}

.newsletter {
  margin-top: 1.5rem;
}

.newsletter p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.newsletter-form {
  display: flex;
}

.newsletter-input {
  flex: 1;
  padding: 0.5rem;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 0.9rem;
}

.newsletter-btn {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 0 1rem;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
  background-color: #2980b9;
}

.footer-legal {
  background-color: #1a252f;
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-legal .copyright {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.legal-link {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #3498db;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-heading {
    margin-bottom: 1rem;
  }
  
  .legal-links {
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }
}