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

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a5f !important;
  letter-spacing: 0.5px;
}

.nav-link {
  color: #4a5568 !important;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 70px;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(30, 58, 95, 0.4), rgba(30, 58, 95, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  max-width: 900px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

.page-header {
  padding: 120px 0 60px;
  background-color: #f8f9fa;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 1rem;
}

.page-header .lead {
  font-size: 1.25rem;
  color: #4a5568;
}

.content-section {
  padding: 80px 0;
}

.content-section.bg-light {
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-text {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.img-fluid {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 0.75rem;
}

.faq-answer {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.7;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a5f 0%, #2a5a8f 100%);
  color: #ffffff;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-primary {
  background-color: #ffffff;
  color: #1e3a5f;
  border: none;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #f0f4f8;
  color: #1e3a5f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-info {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.contact-info h4 {
  color: #1e3a5f;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #4a5568;
  margin-bottom: 0.75rem;
}

.form-control {
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  padding: 12px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #1e3a5f;
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.footer p {
  color: #b0b0b0;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 20px 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

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

.cookie-banner .btn-light {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.cookie-banner .btn-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-banner .btn-primary {
  background-color: #1e3a5f;
  color: #ffffff;
}

.cookie-banner .btn-primary:hover {
  background-color: #2a5a8f;
}

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-text {
    font-size: 1rem;
  }

  .content-section {
    padding: 50px 0;
  }

  .page-header {
    padding: 100px 0 40px;
  }

  .cookie-banner .text-right {
    text-align: center !important;
    margin-top: 15px;
  }
}
