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

:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1e40af;
  --color-secondary: #64748b;
  --color-background: #fafaf9;
  --color-surface: #ffffff;
  --color-text: #1c1917;
  --color-text-light: #57534e;
  --color-border: #e7e5e4;
  --color-shadow: rgba(0, 0, 0, 0.08);
  --border-radius: 12px;
  --header-height: 70px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 8px var(--color-shadow);
}

.navbar {
  padding: 1rem 0;
  height: var(--header-height);
}

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

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

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

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

.btn-primary-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  margin-left: 1rem;
}

.btn-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  color: white;
}

.hero-section {
  padding: calc(var(--header-height) + 80px) 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  border: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
  color: white;
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  border: none;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #475569;
  color: white;
}

.btn-link {
  color: var(--color-primary);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
}

.btn-link:hover {
  text-decoration: underline;
  color: var(--color-primary-dark);
}

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

.content-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.content-section p {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.rounded-custom {
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px var(--color-shadow);
}

.faq-item {
  background-color: var(--color-surface);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px var(--color-shadow);
}

.faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.faq-item p {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.contact-form {
  background-color: var(--color-surface);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px var(--color-shadow);
}

.form-control {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-info {
  background-color: var(--color-surface);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-bottom: 2rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.final-note {
  background-color: #fef3c7;
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid #f59e0b;
}

.final-note h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.footer {
  background-color: var(--color-text);
  color: var(--color-surface);
  padding: 3rem 0 1rem;
}

.footer h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.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: white;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-text);
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -4px 16px var(--color-shadow);
  z-index: 2000;
  display: none;
}

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

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

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

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

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: var(--color-surface);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
}

.cookie-modal-content h3 {
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.cookie-option {
  margin-bottom: 1.5rem;
}

.cookie-option label {
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.cookie-option .small {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-top: 0.25rem;
  margin-left: 1.75rem;
}

.policy-section {
  padding: calc(var(--header-height) + 40px) 0 60px;
}

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

.policy-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.policy-section p {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

.policy-section li {
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.thank-you-section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 40px) 0 60px;
}

.thank-you-content {
  background-color: var(--color-surface);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 24px var(--color-shadow);
}

.thank-you-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.thank-you-content .lead {
  font-size: 1.25rem;
  color: var(--color-primary);
  font-weight: 600;
}

.thank-you-content p {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

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

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

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

  .order-lg-1,
  .order-lg-2 {
    order: 0;
  }

  .col-lg-6 img {
    margin-bottom: 2rem;
  }

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

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

  .hero-subtitle {
    font-size: 1.125rem;
  }

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

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

  .navbar-nav .nav-item {
    margin: 0.5rem 0;
  }

  .btn-primary-cta {
    margin-left: 0;
    margin-top: 1rem;
  }
}
