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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #fff;
}

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

.navbar-brand {
  font-size: 24px;
  color: #f39c12 !important;
  letter-spacing: -0.5px;
}

.nav-link {
  color: #2c3e50 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 80px 0;
}

.hero h1 {
  color: #fff;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero p {
  color: #ecf0f1;
}

.btn-warning {
  background-color: #f39c12;
  border-color: #f39c12;
  color: #2c3e50;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: #e67e22;
  border-color: #e67e22;
  color: #2c3e50;
  transform: translateY(-2px);
}

.card {
  transition: all 0.3s ease;
  border-radius: 8px;
}

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

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

.btn-block {
  font-weight: 600;
}

.card-title {
  color: #2c3e50;
}

.card-text {
  color: #555;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2c3e50;
}

.alert-success {
  background-color: #d5f4e6;
  border-color: #52c9a8;
  color: #0d5e3d;
}

footer {
  margin-top: auto;
}

footer h6 {
  color: #f39c12;
}

footer p {
  color: #bdc3c7;
}

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

footer a:hover {
  color: #f39c12;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 20px 0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.cookie-banner p {
  color: #ecf0f1;
}

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

  .hero h1 {
    font-size: 28px;
  }

  .cookie-banner {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .cookie-banner .text-md-right {
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 20px;
  }

  .hero {
    padding: 30px 0;
  }

  .hero h1 {
    font-size: 24px;
  }

  .card img {
    height: 200px;
  }
}
