/* Footer styles */
.site-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #e0e0e0;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.quick-links h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.quick-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem;
}

.quick-links a {
  text-decoration: none;
  color: #555;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  transition: color 0.2s;
}

.quick-links a:hover,
.quick-links a:focus {
  color: #007bff;
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
  margin-top: 2rem;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #777;
  margin: 0;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -4px 8px rgba(0,0,0,0.1);
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.banner-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #333;
  margin: 0;
  flex: 1;
}

.banner-buttons {
  display: flex;
  gap: 0.5rem;
}

.btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #0056b3;
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

.btn-secondary {
  background-color: #6c757d;
  color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #545b62;
  outline: 2px solid #6c757d;
  outline-offset: 2px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .banner-buttons {
    justify-content: center;
  }
}