html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  margin-top: 1.5rem;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.btn-outline-warning {
  color: #FF8C00;
  border-color: #FF8C00;
}

.btn-outline-warning:hover {
  background-color: #FF8C00;
  border-color: #FF8C00;
  color: white;
}

.btn-warning {
  background-color: #FF8C00;
  border-color: #FF8C00;
}

.btn-warning:hover {
  background-color: #E67E00;
  border-color: #E67E00;
}

.card {
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.img-fluid {
  border-radius: 8px;
}

.accordion .card-header {
  border-bottom: none;
}

.accordion .btn-link {
  color: #FF8C00;
  text-decoration: none;
}

.accordion .btn-link:hover {
  color: #E67E00;
}

.accordion .btn-link:not(.collapsed)::after {
  transform: rotate(-180deg);
}

footer {
  margin-top: 3rem;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #FF8C00 !important;
}

#cookieBanner {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-section h1 {
  font-weight: 700;
  line-height: 1.2;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .hero-section {
    min-height: 60vh !important;
  }
  
  .lead {
    font-size: 1.1rem;
  }
}
