:root {
  --color-primary: #8b1a1a;
  --color-primary-dark: #6b0f0f;
  --color-primary-light: #a82828;
  --color-text: #1a1a1a;
  --color-text-light: #4a4a4a;
  --color-bg: #ffffff;
  --color-bg-light: #f8f8f8;
  --color-border: #e0e0e0;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--color-text);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
}

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

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

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-text);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--color-text);
  background-color: var(--color-text);
  color: white;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

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

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

.nav-link {
  font-weight: 500;
  color: var(--color-text);
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.content-section {
  padding: 4rem 0;
}

.bg-light {
  background-color: var(--color-bg-light);
}

.feature-card,
.info-card,
.awareness-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.info-card:hover,
.awareness-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.feature-card h3,
.info-card h3,
.awareness-card h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

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

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li:before {
  content: "•";
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
}

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

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.testimonials-section {
  background-color: var(--color-bg-light);
}

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

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

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0;
}

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

.cta-section h2 {
  color: white;
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

.page-header {
  background-color: var(--color-bg-light);
  border-bottom: 3px solid var(--color-primary);
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.contact-info,
.contact-form {
  margin-top: 1rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

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

.contact-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: none;
  outline: none;
}

.contact-form .form-check-label {
  font-weight: normal;
}

.contact-form .form-check-label a {
  text-decoration: underline;
}

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

.legal-section h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.legal-section h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
}

.legal-section ul {
  margin-bottom: 1rem;
}

.principle-list {
  list-style: none;
  padding: 0;
}

.principle-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.principle-list li:last-child {
  border-bottom: none;
}

.footer {
  margin-top: 4rem;
}

.footer h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-legal {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer-legal li {
  display: inline-block;
}

.footer-legal li:after {
  content: "|";
  margin-left: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal li:last-child:after {
  content: "";
  margin-left: 0;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-legal a:hover {
  color: white;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-consent-content p {
  margin: 0;
  flex: 1;
}

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

.cookie-consent-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

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

  .hero-content p {
    font-size: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .content-section {
    padding: 2rem 0;
  }

  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-consent-buttons .btn {
    width: 100%;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-legal li:after {
    display: none;
  }
}

@media (max-width: 992px) {
  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }
}
