* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  color: #1a1a1a;
  background-color: #fff;
  line-height: 1.6;
}

a {
  color: #f4c430;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #d4a330;
  text-decoration: none;
}

.navbar {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.nav-link {
  color: #1a1a1a !important;
  font-weight: 500;
  margin-left: 15px;
}

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

.hero-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  padding: 100px 20px;
  text-align: center;
}

.hero-section h1 {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.feature-box {
  background-color: #f9f9f9;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.btn {
  padding: 10px 30px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-dark {
  background-color: #1a1a1a;
  color: #fff;
  border: none;
}

.btn-dark:hover {
  background-color: #333;
  color: #fff;
}

.btn-outline-dark {
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.btn-outline-dark:hover {
  background-color: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 0.95rem;
}

.form-control:focus {
  border-color: #f4c430;
  box-shadow: 0 0 0 0.2rem rgba(244, 196, 48, 0.25);
}

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.3rem;
  border-color: #ddd;
}

.form-check-input:checked {
  background-color: #f4c430;
  border-color: #f4c430;
}

footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 50px 20px;
  margin-top: 80px;
}

footer a {
  color: #999;
  text-decoration: none;
}

footer a:hover {
  color: #f4c430;
}

footer h6 {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #fff;
  padding: 15px 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p a {
  color: #f4c430;
}

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

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

  .hero-section p {
    font-size: 1rem;
  }

  .card img {
    height: 200px;
  }

  .navbar-brand {
    font-size: 1.3rem;
  }

  .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }

  footer {
    padding: 40px 20px;
  }

  footer .row {
    margin-bottom: 30px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-banner .container {
    flex-direction: column !important;
  }

  .cookie-banner button {
    width: 100%;
  }
}
