body {
  padding-top: 70px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #212529;
}

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

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

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

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

.icon-circle.large {
  width: 80px;
  height: 80px;
  font-size: 2rem;
}

.benefit-list li {
  padding-left: 20px;
  position: relative;
}

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

.benefit-box {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

.faq-box {
  background-color: white;
  border-radius: 8px;
  border-left: 4px solid #dc3545;
}

.thank-you-box {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #28a745;
  color: white;
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.policy-content a {
  color: #dc3545;
}

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

.value-list li {
  padding-left: 20px;
  position: relative;
}

.value-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: bold;
  font-size: 1.5rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #dc3545;
  color: white;
  padding: 20px 0;
  z-index: 9999;
  display: none;
}

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

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

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.card {
  transition: transform 0.3s ease;
}

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

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

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

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