* {
  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;
  background-color: #fff;
}

.navbar {
  padding: 1rem 0;
}

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

.navbar-nav .nav-link {
  color: #333 !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  margin-top: 70px;
  position: relative;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 77, 122, 0.7);
  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 .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.page-header {
  margin-top: 70px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #1a4d7a;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.15rem;
  font-weight: 300;
}

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

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

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

.btn-outline-primary:hover {
  background-color: #1a4d7a;
  border-color: #1a4d7a;
  color: #fff;
  transform: translateY(-2px);
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.cta-section {
  background-color: #1a4d7a;
}

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

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

footer {
  margin-top: auto;
}

footer h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ccc !important;
  text-decoration: none;
}

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

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

.cookie-banner a {
  color: #fff;
}

.contact-info h5 {
  color: #1a4d7a;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: #1a4d7a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #153d62;
}

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

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

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

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

  .navbar-nav {
    margin-top: 1rem;
  }

  .navbar-nav .nav-link {
    margin: 0.25rem 0;
  }
}

@media (max-width: 767px) {
  .hero-image {
    height: 70vh;
  }

  .btn-lg {
    padding: 0.5rem 1.5rem;
  }
}
