* {
  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;
  padding-top: 76px;
}

.navbar {
  transition: all 0.3s ease;
}

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

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

.nav-link:hover {
  color: #0066cc !important;
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-header {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  margin-top: 76px;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}

.text-primary {
  color: #0066cc !important;
}

.btn-primary {
  background-color: #0066cc;
  border-color: #0066cc;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0052a3;
  border-color: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-outline-primary {
  color: #0066cc;
  border-color: #0066cc;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

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

.icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
}

.footer {
  padding: 40px 0 20px;
}

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

.footer a:hover {
  color: #0066cc !important;
}

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

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

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.rounded {
  border-radius: 8px;
}

.benefit-item {
  padding-left: 20px;
  border-left: 3px solid #0066cc;
}

.info-card {
  transition: all 0.3s ease;
}

.info-card:hover {
  background-color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.value-card {
  background-color: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-box {
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-3px);
}

.service-list {
  list-style: none;
  padding-left: 0;
}

.service-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.service-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0066cc;
  font-weight: bold;
}

.process-step {
  padding: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #0066cc;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto;
}

.faq-item {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.contact-info-item h6 {
  color: #0066cc;
}

.thank-you-section {
  padding: 120px 0;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
}

.thank-you-icon {
  display: inline-block;
}

.legal-content h3 {
  color: #0066cc;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.legal-content h5 {
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

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

  .section-padding {
    padding: 40px 0;
  }

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

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

  .display-4 {
    font-size: 2rem;
  }

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

@media (max-width: 576px) {
  body {
    padding-top: 66px;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .cookie-banner {
    padding: 15px 0;
  }
}
