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

.navbar {
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

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

.nav-link:hover {
  color: #dc3545;
}

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

.page-header {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  padding: 100px 0 60px;
  margin-bottom: 0;
}

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

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

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  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);
}

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

.btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.cta-section {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  padding: 80px 0;
}

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

.benefit-card:hover {
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.feature-box:hover {
  border-color: #dc3545;
  box-shadow: 0 5px 20px rgba(220, 53, 69, 0.1);
}

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

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

.form-control:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-check-input:checked {
  background-color: #dc3545;
  border-color: #dc3545;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

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

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

.success-icon {
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.policy-content {
  font-size: 1rem;
  line-height: 1.8;
}

.policy-content h2 {
  color: #212529;
}

.policy-content h5 {
  color: #495057;
}

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

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

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

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

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

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #dc3545;
  text-decoration: none;
}

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

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

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

  .lead {
    font-size: 1rem;
  }

  .icon-circle,
  .value-icon,
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .checkmark-circle {
    width: 100px;
    height: 100px;
  }

  .checkmark {
    font-size: 3rem;
  }
}

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

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

  .btn-lg {
    padding: 10px 20px;
    font-size: 1rem;
  }
}
