body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.navbar-brand img {
  height: 40px;
}

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

.nav-link {
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff8c42;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: relative;
  min-height: 500px;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}

.btn-primary {
  background-color: #ff8c42;
  border-color: #ff8c42;
  font-weight: 600;
  padding: 12px 32px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e67a30;
  border-color: #e67a30;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 140, 66, 0.3);
}

.btn-outline-primary {
  border-color: #ff8c42;
  color: #ff8c42;
  font-weight: 600;
  padding: 12px 32px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #ff8c42;
  border-color: #ff8c42;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 140, 66, 0.3);
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

.bg-primary {
  background-color: #ff8c42 !important;
}

.text-primary {
  color: #ff8c42 !important;
}

.page-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0 60px;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
}

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

footer a:hover {
  opacity: 0.8;
}

.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.hidden {
  display: none;
}

.accordion .card {
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 0;
}

.accordion .card-header {
  background-color: #f8f9fa;
}

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

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

@media (max-width: 768px) {
  .hero-image img {
    height: 400px;
  }

  .display-4 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }
}
