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

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

.header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: #1a3d5c !important;
}

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

.nav-link:hover,
.nav-link.active {
  color: #2563eb !important;
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

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

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

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-hero {
  background: linear-gradient(135deg, #1a3d5c 0%, #2563eb 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-hero .lead,
.page-hero p {
  font-size: 18px;
  opacity: 0.9;
}

.section {
  padding: 80px 0;
}

.section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a3d5c;
}

.section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a3d5c;
}

.section h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a3d5c;
}

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

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

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

.card-title {
  color: #1a3d5c;
  font-weight: 600;
}

.benefit-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.benefit-card h4 {
  color: #2563eb;
  margin-bottom: 15px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-number + h4 {
  color: #1a3d5c;
  font-weight: 600;
  margin-bottom: 10px;
}

.audience-list {
  list-style: none;
  padding: 0;
}

.audience-list li {
  padding: 15px 0 15px 40px;
  position: relative;
  border-bottom: 1px solid #e5e7eb;
}

.audience-list li:last-child {
  border-bottom: none;
}

.audience-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
  font-size: 20px;
}

.testimonial-card {
  background: #f9fafb;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #2563eb;
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 15px;
  color: #555;
}

.testimonial-author {
  font-weight: 600;
  color: #1a3d5c;
}

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  color: #2563eb;
  margin-bottom: 15px;
}

.cta-section {
  background: linear-gradient(135deg, #1a3d5c 0%, #2563eb 100%);
  color: #fff;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 20px;
}

.cta-section .lead {
  color: #fff;
  opacity: 0.9;
  margin-bottom: 30px;
}

.mission-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  border-top: 4px solid #2563eb;
  height: 100%;
}

.principle-item {
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}

.principle-item:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
  font-size: 20px;
}

.contact-form-wrapper {
  background: #f9fafb;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
  color: #1a3d5c;
  margin-bottom: 25px;
}

.form-control {
  border: 1px solid #d1d5db;
  border-radius: 4px;
  padding: 12px;
}

.form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-info {
  background: #f9fafb;
  padding: 30px;
  border-radius: 8px;
}

.contact-info h4 {
  color: #1a3d5c;
  margin-bottom: 20px;
}

.thank-you-section {
  min-height: 500px;
  display: flex;
  align-items: center;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: #10b981;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 30px;
}

.legal-content {
  font-size: 15px;
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #1a3d5c;
}

.legal-content h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #2563eb;
}

.legal-content ul {
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 10px;
}

.footer {
  background: #1a3d5c;
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.footer p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background: #2563eb;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-lg {
  padding: 15px 40px;
  font-size: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a3d5c;
  color: #fff;
  padding: 20px 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;
  font-size: 14px;
}

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

.cookie-banner .btn {
  font-size: 14px;
  padding: 8px 20px;
}

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

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .section {
    padding: 50px 0;
  }

  .section h2 {
    font-size: 28px;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

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

@media (max-width: 576px) {
  .hero {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .page-hero {
    padding: 50px 0;
  }

  .page-hero h1 {
    font-size: 28px;
  }
}
