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

.navbar {
  padding: 1rem 0;
}

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

.nav-link {
  color: #333 !important;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

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

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

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

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

.content-section {
  padding: 80px 0;
}

.section-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
}

.btn-primary {
  background-color: #dc3545;
  border-color: #dc3545;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

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

.card {
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.card-title {
  color: #dc3545;
  font-weight: 700;
}

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

.list-feature li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

.list-feature li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: 700;
  font-size: 1.2rem;
}

.principle-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.principle-card h4 {
  color: #dc3545;
  margin-bottom: 15px;
  font-weight: 700;
}

.audience-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
}

.audience-card h5 {
  color: #dc3545;
  margin-bottom: 15px;
  font-weight: 700;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-card .author {
  color: #dc3545;
  font-weight: 600;
  margin-top: 15px;
}

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h5 {
  color: #dc3545;
  font-weight: 700;
  margin-bottom: 15px;
}

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

.footer {
  background-color: #212529;
  color: white;
  padding: 60px 0 30px;
}

.footer h5 {
  color: white;
  margin-bottom: 20px;
}

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

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

.footer ul li {
  margin-bottom: 10px;
}

.contact-info {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
}

.legal-content {
  font-size: 0.95rem;
}

.legal-content h2 {
  color: #dc3545;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  color: #333;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.legal-content ul {
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 8px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #dc3545;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

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

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

.cookie-banner p {
  margin: 0;
}

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

.cookie-banner .btn-light {
  background-color: white;
  color: #212529;
}

.cookie-banner .btn-outline-light {
  border-color: white;
  color: white;
}

.cookie-banner .btn-outline-light:hover {
  background-color: white;
  color: #212529;
}

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

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

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

  .nav-link {
    margin-left: 0;
    margin-top: 10px;
  }

  .cookie-banner .btn {
    margin-top: 10px;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .navbar-collapse {
    margin-top: 15px;
  }
}
