:root {
  --primary-color: #dc3545;
  --primary-dark: #c82333;
  --primary-light: #f8d7da;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #dee2e6;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

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

.hero-section h1 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  color: var(--text-light);
  font-size: 1.25rem;
}

.section-light {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.section-white {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.section-dark {
  padding: 80px 0;
  background-color: var(--text-dark);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-dark .section-title {
  color: var(--bg-white);
}

.card {
  transition: all 0.3s ease;
  border: none;
}

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

.benefit-card,
.principle-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover,
.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card h5,
.principle-card h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--primary-color);
}

.faq-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.faq-item {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.faq-item h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--text-dark);
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  text-align: center;
}

.contact-info-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.thank-you-section {
  padding: 140px 0 80px;
  min-height: 80vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.thank-you-content {
  background-color: var(--bg-white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.checkmark-circle {
  display: inline-block;
}

.policy-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--text-dark) 0%, #34495e 100%);
  text-align: center;
  color: var(--bg-white);
}

.policy-content {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.policy-section h4 {
  color: var(--text-dark);
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

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

.policy-section a {
  color: var(--primary-color);
  font-weight: 600;
}

.policy-section a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 60px 0 20px;
}

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

.footer a:hover {
  color: var(--primary-color);
}

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

.bg-white-50 {
  background-color: rgba(255, 255, 255, 0.1);
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 1.5rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-banner a {
  color: var(--bg-white);
  text-decoration: underline;
}

.cookie-banner .btn-light {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border: none;
}

.cookie-banner .btn-outline-light {
  color: var(--bg-white);
  border-color: var(--bg-white);
}

.cookie-banner .btn-outline-light:hover {
  background-color: var(--bg-white);
  color: var(--text-dark);
}

.shadow-sm {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.shadow {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .hero-section {
    padding: 120px 0 60px;
    text-align: center;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .nav-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }

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

  .thank-you-content {
    padding: 2rem;
  }
}

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

  .lead {
    font-size: 1.1rem;
  }

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

  .section-title {
    font-size: 1.75rem;
  }
}
