/* Footer Styles */
.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: #fff;
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-section p {
  margin-bottom: 1rem;
  color: #bdc3c7;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background-color: #f45e43;
  transform: translateY(-2px);
}

.footer-logo {
  text-align: center;
  margin: 1rem 0;
  padding: 0.5rem;
}

.footer-logo img {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.footer-logo a {
  display: inline-block;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  color: #7f8c8d;
  font-size: 0.9rem;
}

.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #fff;
  text-decoration: underline;
}

.divider {
  color: #7f8c8d;
  padding: 0 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .divider {
    display: none;
  }
}
