* {
  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;
  background-color: #ffffff;
}

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

.nav-link {
  font-weight: 500;
  color: #212529 !important;
  padding: 0.5rem 1rem !important;
}

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

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

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

.hero-section .lead {
  color: #6c757d;
  line-height: 1.6;
}

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

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

.highlight-card {
  border: 2px solid #dc3545 !important;
}

.highlight-card .card-title {
  color: #dc3545;
}

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

.benefit-item h5 {
  color: #212529;
  margin-top: 1rem;
}

.solution-card {
  transition: transform 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-3px);
}

.solution-card ul li {
  padding: 0.5rem 0;
  color: #495057;
}

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

.recommendation-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #495057;
}

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

.testimonial-card {
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.stars {
  font-size: 1.2rem;
}

.accordion .btn-link {
  text-decoration: none;
}

.accordion .btn-link:hover {
  color: #dc3545 !important;
}

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

.cta-section h2 {
  color: #ffffff;
}

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

.footer h5 {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

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

.footer a:hover {
  color: #ffffff;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid #495057;
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.disclaimer-box {
  background-color: #f8f9fa;
  border-left: 4px solid #dc3545;
  padding: 1.5rem;
  margin: 2rem 0;
}

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

.cookie-banner.hidden {
  display: none;
}

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

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

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

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

.contact-info-box {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: start;
  margin-bottom: 1.5rem;
}

.contact-info-item svg {
  flex-shrink: 0;
  margin-right: 1rem;
}

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

.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
}

.thank-you-section {
  padding: 100px 0;
  text-align: center;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background-color: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.policy-content {
  padding: 60px 0;
}

.policy-content h2 {
  color: #212529;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.policy-content p {
  color: #6c757d;
  margin-bottom: 1rem;
}

.policy-content ul {
  color: #6c757d;
  margin-bottom: 1rem;
}

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

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .benefit-item {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }

  .btn-lg {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}
