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

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

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

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

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

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

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

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

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

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

.btn-primary {
  background-color: #0066cc;
  border-color: #0066cc;
  font-weight: 600;
  padding: 12px 30px;
  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;
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

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

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto;
}

.icon-circle-lg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto;
}

.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.15) !important;
}

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

.page-header-simple {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  padding: 60px 0 40px;
}

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

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

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

.footer a:hover {
  color: #0066cc;
  text-decoration: none;
}

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

.custom-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}

.custom-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0066cc;
  font-weight: 700;
  font-size: 1.2rem;
}

.contact-info-card,
.contact-form-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.contact-item a {
  color: #0066cc;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

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

.faq-item {
  padding: 20px;
  background: #ffffff;
  border-left: 4px solid #0066cc;
  border-radius: 4px;
}

.policy-content h2 {
  margin-top: 40px;
}

.policy-content h5 {
  margin-top: 20px;
  font-weight: 600;
}

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

.thank-you-content {
  padding: 40px 0;
}

.success-icon {
  display: inline-block;
}

.confirmation-details {
  text-align: left;
}

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

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

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

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

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

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

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

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

  .cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .btn-lg {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .icon-circle-lg {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
