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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

html,
body {
  height: 100%;
}

.container {
  max-width: 1200px;
}

.hero {
  padding: 60px 0;
}

.hero h1 {
  color: #1a1a1a;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.features {
  background-color: #f8f9fa;
}

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

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

.cta {
  background-color: #dc3545;
  border-radius: 8px;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
  transition: all 0.3s ease;
}

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

.btn-light {
  color: #dc3545;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: #f1f3f5;
  color: #dc3545;
}

.text-danger {
  color: #dc3545 !important;
}

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

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

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

.page-header {
  background-color: #f8f9fa;
  border-bottom: 2px solid #e9ecef;
}

.page-header h1 {
  color: #1a1a1a;
}

footer {
  background-color: #1a1a1a;
  color: #fff;
  margin-top: auto;
}

footer h5 {
  color: #fff;
  font-weight: 600;
}

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

footer a.text-danger {
  color: #dc3545;
}

footer a.text-danger:hover {
  color: #ff6b7a;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 15px;
  transition: border-color 0.3s ease;
}

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

.cookie-banner {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.thank-you-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.policy-content h2 {
  color: #1a1a1a;
  margin-top: 2rem;
}

.policy-content h3 {
  color: #333;
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

.policy-content p {
  line-height: 1.8;
  color: #666;
}

.policy-content ul {
  margin-left: 2rem;
  color: #666;
}

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

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

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

  .navbar-collapse {
    margin-top: 10px;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 30px 0;
  }

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

  .card {
    margin-bottom: 15px;
  }

  footer {
    padding-top: 30px;
  }

  footer .col-md-4 {
    margin-bottom: 20px;
  }
}
