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

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #212529;
  line-height: 1.6;
  padding-top: 70px;
}

.navbar {
  transition: all 0.3s ease;
}

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

.nav-link {
  font-weight: 500;
  color: #212529;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

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

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

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

.hero-section .lead {
  color: #495057;
}

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

.info-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.info-section .card-img-top {
  height: 250px;
  object-fit: cover;
}

.benefits-section {
  background: #ffffff;
}

.benefit-card {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  background: #f8f9fa;
  height: 100%;
}

.benefit-icon {
  font-size: 3rem;
  color: #dc3545;
  margin-bottom: 1rem;
  font-weight: bold;
}

.recommendation-item {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #dc3545;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: #495057;
  margin-bottom: 1rem;
}

.testimonial-author {
  color: #dc3545;
  text-align: right;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #dee2e6;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: #212529;
  margin-bottom: 0.5rem;
}

.contact-form-box {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-section {
  background: #f8f9fa;
}

.footer {
  margin-top: 3rem;
}

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #212529;
  color: #ffffff;
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-content a {
  color: #dc3545;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

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

.page-header-section h1 {
  color: #ffffff;
}

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

.contact-section {
  background: #f8f9fa;
}

.contact-info-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

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

.legal-content h2 {
  color: #212529;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #dc3545;
}

.legal-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.legal-content h3 {
  color: #495057;
  font-weight: bold;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.legal-content a {
  color: #dc3545;
  font-weight: 500;
}

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

.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
  font-weight: 500;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

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

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

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

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

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    margin-top: 1rem;
  }

  .cookie-buttons .btn {
    flex: 1;
  }

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

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

  .contact-form-box,
  .contact-info-box {
    padding: 1.5rem;
  }

  .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;
  }

  .benefit-card,
  .recommendation-item,
  .testimonial-card {
    padding: 1.5rem;
  }
}
