body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  color: #212529;
  background-color: #ffffff;
}

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

.navbar-light .navbar-nav .nav-link {
  color: #495057;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #0056b3;
}

.hero-section {
  background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
  color: white;
  padding: 4rem 0;
}

.hero-section h1 {
  color: white;
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.95);
}

.btn-primary {
  background-color: #0056b3;
  border-color: #0056b3;
  font-weight: 600;
}

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

.btn-outline-primary {
  color: #0056b3;
  border-color: #0056b3;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.card {
  transition: transform 0.2s ease;
  border: 1px solid #dee2e6;
}

.card:hover {
  transform: translateY(-5px);
}

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

.feature-box {
  padding: 2rem 1rem;
}

.content-section {
  margin-bottom: 2.5rem;
}

.content-section h2 {
  color: #0056b3;
  border-bottom: 2px solid #0056b3;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.content-section ul {
  line-height: 1.8;
}

footer {
  margin-top: auto;
}

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

footer a:hover {
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0056b3;
  color: white;
  padding: 1rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

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

.breadcrumb {
  background-color: #f8f9fa;
  padding: 0.75rem 1rem;
}

.breadcrumb-item a {
  color: #0056b3;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

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

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

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