/* Updated Footer Styles */
footer {
  background-color: #0A4697;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  max-width: 150px;
}

.footer-links {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 900px;
}

.footer-column {
  flex: 1;
  padding: 0 15px;
  min-width: 160px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 2px;
  width: 40px;
  background-color: var(--accent-rose);
}

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

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.7;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--accent-rose);
  transform: translateY(-3px);
}

/* Dark theme support */
.body-dark footer {
  background-color: var(--card-background);
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .footer-column {
    width: 100%;
    max-width: 250px;
  }
}
