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

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

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

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

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

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

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

.page-header {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  margin-bottom: 0;
}

.page-header-small {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  margin-bottom: 0;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2563eb;
}

.icon-circle-large {
  width: 100px;
  height: 100px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-text-large {
  font-size: 2rem;
  font-weight: bold;
  color: #2563eb;
}

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

.btn-primary:hover {
  background-color: #1e40af;
  border-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

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

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

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

.shadow-sm {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
}

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

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

footer {
  margin-top: auto;
}

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

footer a:hover {
  color: #fff !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e293b;
  color: #fff;
  padding: 1rem 0;
  z-index: 9999;
  display: none;
}

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

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

.content-section {
  margin-bottom: 2.5rem;
}

.content-section h3 {
  color: #1e40af;
  margin-bottom: 1rem;
  font-weight: 600;
}

.content-section h5 {
  color: #2563eb;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.content-section ul {
  margin-bottom: 1rem;
}

.content-section li {
  margin-bottom: 0.5rem;
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
}

.checkmark-circle {
  width: 120px;
  height: 120px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.checkmark {
  font-size: 4rem;
  color: #fff;
  font-weight: bold;
}

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

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

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

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

@media (max-width: 767px) {
  .hero-section {
    padding: 80px 0 40px;
    text-align: center;
  }

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

  .lead {
    font-size: 1rem;
  }

  .cookie-banner .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
