:root {
  --primary-blue: #4a90e2;
  --primary-blue-dark: #357abd;
  --secondary-blue: #5ba3f5;
  --neutral-light: #f8f9fa;
  --neutral-gray: #6c757d;
  --neutral-dark: #343a40;
  --text-dark: #212529;
  --white: #ffffff;
}

* {
  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;
  background-color: var(--white);
}

.site-header {
  background-color: var(--white);
  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(--primary-blue);
}

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

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

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

.hero-section {
  position: relative;
  margin-bottom: 3rem;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.85) 0%, rgba(91, 163, 245, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.page-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  padding: 4rem 0 3rem;
  margin-bottom: 3rem;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero .lead {
  font-size: 1.25rem;
  opacity: 0.95;
}

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

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--neutral-dark);
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.content-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--neutral-dark);
}

.content-section p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

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

.btn-primary:hover {
  background-color: var(--primary-blue-dark);
  border-color: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
  background-color: var(--neutral-gray);
  border-color: var(--neutral-gray);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--neutral-dark);
  border-color: var(--neutral-dark);
}

.btn-link {
  color: var(--primary-blue);
}

.btn-link:hover {
  color: var(--primary-blue-dark);
}

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

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

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: 700;
}

.info-box,
.disclaimer-box {
  background-color: var(--neutral-light);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-blue);
}

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

.testimonial-box p {
  margin-bottom: 1rem;
}

.testimonial-box .author {
  font-weight: 600;
  color: var(--primary-blue);
  font-style: italic;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #dee2e6;
}

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

.faq-item h4 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  padding: 4rem 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-section .btn-primary {
  background-color: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
}

.cta-section .btn-primary:hover {
  background-color: var(--neutral-light);
  border-color: var(--neutral-light);
}

.site-footer {
  background-color: var(--neutral-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.site-footer h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

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

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

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

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

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

.footer-legal li {
  margin: 0 1rem;
}

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

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

.contact-info h4 {
  color: var(--primary-blue);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.thank-you-section {
  padding: 6rem 0;
}

.thank-you-content {
  background-color: var(--neutral-light);
  padding: 3rem;
  border-radius: 8px;
}

.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.principle-item h5 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.disclaimer-content .alert {
  margin-bottom: 2rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-preferences {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 8px;
  z-index: 1001;
  max-width: 500px;
  width: 90%;
}

.preferences-content h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
}

.preference-item {
  margin-bottom: 1.5rem;
}

.preference-item label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.preference-item input[type="checkbox"] {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.preference-item span {
  font-weight: 600;
}

.preference-item p {
  margin-left: 1.5rem;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: var(--neutral-gray);
}

.preferences-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

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

  .page-hero h1 {
    font-size: 2rem;
  }

  .content-section h2 {
    font-size: 1.75rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

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

  .preferences-buttons {
    flex-direction: column;
  }

  .preferences-buttons .btn {
    width: 100%;
  }

  .footer-legal {
    flex-direction: column;
    align-items: center;
  }

  .footer-legal li {
    margin: 0.5rem 0;
  }
}

@media (max-width: 992px) {
  .hero-image {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .hero-image {
    height: 300px;
  }

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