body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  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 {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.hero-section h1 {
  color: #212529;
  line-height: 1.2;
}

.hero-section .lead {
  color: #495057;
  font-size: 1.15rem;
}

.section-white {
  padding: 80px 0;
  background-color: #fff;
}

.section-gray {
  padding: 80px 0;
  background-color: #f8f9fa;
}

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

.page-header h1 {
  color: #fff;
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.9);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  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);
}

.benefit-item {
  margin-bottom: 30px;
}

.benefit-item h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-item p {
  color: #6c757d;
  margin-bottom: 0;
}

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

.footer {
  padding: 60px 0 30px;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 20px;
}

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

.footer a:hover {
  opacity: 0.8;
}

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

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

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

.cookie-consent p {
  margin-bottom: 0;
}

.cookie-consent a {
  color: #fff;
}

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

.contact-info-card {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #dc3545;
}

.contact-info-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-info-card a {
  color: #212529;
  text-decoration: none;
}

.contact-info-card a:hover {
  color: #dc3545;
}

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

.checkmark-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #28a745;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: scaleIn 0.5s ease;
}

.checkmark {
  width: 40px;
  height: 20px;
  border-left: 5px solid #fff;
  border-bottom: 5px solid #fff;
  transform: rotate(-45deg);
  margin-bottom: 10px;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  color: #212529;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.75rem;
}

.legal-content h3 {
  color: #495057;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.35rem;
}

.legal-content p {
  margin-bottom: 15px;
  color: #495057;
}

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

.legal-content ul li {
  margin-bottom: 10px;
  color: #495057;
}

.legal-content a {
  color: #dc3545;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

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

.custom-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
  color: #495057;
}

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

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

  .hero-section h1 {
    font-size: 2rem;
  }

  .section-white,
  .section-gray {
    padding: 60px 0;
  }

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

  .page-header h1 {
    font-size: 2rem;
  }

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

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

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

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

  .hero-section h1 {
    font-size: 1.75rem;
  }

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