body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  padding-top: 70px;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #333 !important;
}

.nav-link {
  color: #666 !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #ffc107 !important;
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.hero-section h1 {
  color: #333;
}

.btn-primary {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #333;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
}

.btn-primary:hover {
  background-color: #ffb300;
  border-color: #ffb300;
  color: #333;
}

.btn-outline-primary {
  border-color: #ffc107;
  color: #ffc107;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
}

.btn-outline-primary:hover {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #333;
}

.btn-light {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #333;
  font-weight: 600;
}

.btn-light:hover {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
  color: #333;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.card-img-top {
  height: 250px;
  object-fit: cover;
}

.cta-section {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  padding: 80px 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: white;
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner a {
  color: #ffc107;
  text-decoration: underline;
}

.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

footer {
  background-color: #1a1a1a;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffc107 !important;
  text-decoration: none;
}

.accordion .btn-link {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  width: 100%;
  text-align: left;
}

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

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .card-img-top {
    height: 200px;
  }
}
