.footer {
  background: #2d3748; /* Dark slate background */
  color: white;
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1100px; /* Slightly narrower for better readability */
  margin: 0 auto;
}

/* Links row */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: white;
}

/* Subtle divider */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 16px 0 20px;
}

/* Bottom section: brand + meta text */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

/* Logo styling */
.footer-logo {
  display: flex;
  justify-content: center;
}
.footer-logo img {
  height: 48px; /* Smaller than your current 72px for balance */
  width: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Text styles */
.footer-meta {
  max-width: 820px;
}

.footer-copyright {
  margin: 0 0 6px;
  color: #EEF2FF; /* Slightly lighter than white */
  font-weight: 600;
}

.footer-disclaimer {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .footer-content { padding: 2rem 1rem; }
  .footer-logo img { height: 40px; }
  .footer-disclaimer { font-size: 12px; }
}
