/* Footer Styles */
footer {
  background: #fff;
  color: #000;
  padding: 40px 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section h3 {
  color: #000;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p, .footer-section a {
  color: #000;
  line-height: 1.6;
  text-decoration: none;
  font-size: 0.95em;
}

.footer-section a:hover { color: #333; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: #f2f2f2; border-radius: 50%;
  transition: all 0.3s ease;
  color: #000;
}
.footer-social a:hover { background: #e6e6e6; transform: translateY(-2px); }

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: #777;
  font-size: 0.9em;
}

/* Ensure proper layout */
html, body { height: 100%; }
body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1 0 auto; }