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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

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

.nav-link:hover,
.nav-link.active {
  color: #1a3a52 !important;
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 56px;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 58, 82, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

.btn-primary {
  background-color: #1a3a52;
  border-color: #1a3a52;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0f2537;
  border-color: #0f2537;
  transform: translateY(-2px);
}

.card {
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h4 {
  color: #1a3a52;
  margin-bottom: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5f7f 100%);
  color: #fff;
}

.cta-section h2 {
  color: #fff;
}

.cta-section .btn-primary {
  background-color: #fff;
  color: #1a3a52;
  border: none;
}

.cta-section .btn-primary:hover {
  background-color: #f0f0f0;
  color: #0f2537;
}

footer {
  margin-top: 0;
}

footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

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

footer a:hover {
  opacity: 0.7;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1a3a52;
  color: #fff;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-banner p {
  margin: 0;
}

.accordion .btn-link {
  text-decoration: none;
  color: #1a3a52;
  font-weight: 600;
}

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

img.img-fluid {
  border-radius: 8px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

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

  .hero-section {
    height: 70vh;
  }
}

@media (max-width: 576px) {
  .cookie-banner .col-md-4 {
    margin-top: 1rem;
    text-align: center !important;
  }
}
