:root {
  --color-primary: #9b88c4;
  --color-primary-dark: #7d6ba8;
  --color-primary-light: #b8a8d9;
  --color-background: #fafafa;
  --color-surface: #ffffff;
  --color-text: #2d2d2d;
  --color-text-light: #6b6b6b;
  --color-border: #e5e5e5;
  --color-accent: #d4c5e8;
}

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

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;
  scroll-behavior: smooth;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  transition: color 0.3s ease;
}

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

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

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

.btn-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  border: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(155, 136, 196, 0.3);
}

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

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

.hero-section .lead {
  font-size: 1.3rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.hero-section p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.hero-section .btn-primary {
  background: var(--color-primary);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(155, 136, 196, 0.3);
}

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

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

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

.content-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

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

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

.rounded {
  border-radius: 12px;
  overflow: hidden;
}

.img-fluid {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.img-fluid:hover {
  transform: scale(1.02);
}

.faq-item {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--color-surface);
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

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

.contact-form {
  background: var(--color-surface);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

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

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(155, 136, 196, 0.15);
}

.form-group label {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.contact-info {
  padding: 2rem;
  background: var(--color-accent);
  border-radius: 12px;
}

.contact-info p {
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.main-footer {
  background: var(--color-text);
  color: white;
  padding: 50px 0 20px;
  margin-top: 80px;
}

.main-footer h5 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  padding: 1.5rem 0;
  display: none;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-content p {
  margin: 0;
  color: var(--color-text);
  flex: 1;
}

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

.cookie-buttons .btn {
  white-space: nowrap;
}

.thank-you-section {
  padding: 150px 0 100px;
  min-height: 80vh;
}

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

.thank-you-section .lead {
  font-size: 1.3rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.thank-you-content {
  background: var(--color-surface);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.additional-info {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid var(--color-border);
}

.additional-info h3 {
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
}

.button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.policy-section {
  padding: 120px 0 80px;
}

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

.policy-content {
  background: var(--color-surface);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  margin-top: 2rem;
}

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

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

.policy-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.policy-content p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.policy-content li {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

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

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

  .hero-section .lead {
    font-size: 1.1rem;
  }

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

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

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

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

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

  .contact-form {
    padding: 1.5rem;
  }

  .policy-content {
    padding: 2rem 1.5rem;
  }

  .policy-section h1 {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 1rem;
  }

  .nav-item {
    text-align: center;
  }

  .btn-cta {
    margin-top: 1rem;
    display: inline-block;
  }
}
