* {
  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;
}

.site-header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
}

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

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

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

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

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text {
  font-size: 1.125rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

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

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

.btn-outline-primary {
  color: #dc3545;
  border-color: #dc3545;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: #dc3545;
  border-color: #dc3545;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
}

.feature-card,
.service-card,
.testimonial-card,
.audience-card,
.value-card {
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.feature-card h3,
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.75rem;
}

.benefit-item {
  padding: 1.5rem;
  background-color: #ffffff;
  border-left: 4px solid #dc3545;
  border-radius: 4px;
}

.benefit-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.5rem;
}

.testimonial-card {
  background-color: #f8f9fa;
  border-radius: 8px;
}

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

.testimonial-card strong {
  color: #212529;
}

.audience-card {
  background-color: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 8px;
}

.audience-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #dc3545;
  margin-bottom: 0.5rem;
}

.value-card {
  background-color: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.value-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #dc3545;
  margin-bottom: 0.75rem;
}

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

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

.site-footer {
  background-color: #212529;
  color: #ffffff;
}

.site-footer h5 {
  color: #dc3545;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.site-footer a:hover {
  color: #dc3545;
}

.page-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
}

.page-header .lead {
  font-size: 1.25rem;
  color: #6c757d;
}

.contact-form .form-control {
  border: 2px solid #e9ecef;
  padding: 0.75rem;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

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

.contact-form label {
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.5rem;
}

.contact-info h5 {
  color: #dc3545;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

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

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

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

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

.thank-you-section {
  padding: 80px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

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

.cookie-consent p {
  margin: 0;
  font-size: 0.9rem;
}

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

.cookie-consent .btn-light {
  background-color: #ffffff;
  color: #212529;
  border: none;
}

.cookie-consent .btn-outline-light {
  border-color: #ffffff;
  color: #ffffff;
}

.cookie-consent .btn-outline-light:hover {
  background-color: #ffffff;
  color: #212529;
}

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

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

  .hero-text {
    font-size: 1rem;
  }

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

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

  .cookie-consent .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }
}

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

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