:root {
  --violet-primary: #9b7fa8;
  --violet-light: #b89fc7;
  --violet-dark: #7a5f8a;
  --warm-white: #faf9f7;
  --warm-beige: #f4f1ed;
  --warm-gray: #e6e3df;
  --text-dark: #2d2a27;
  --text-medium: #5f5a54;
  --text-light: #8a847c;
}

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

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

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(250, 249, 247, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

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

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

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

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

.btn-cta {
  background: linear-gradient(135deg, var(--violet-primary), var(--violet-light));
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(155, 127, 168, 0.3);
  color: white;
}

.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--warm-white), var(--warm-beige));
}

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

.hero-section .lead {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.section-light {
  background-color: var(--warm-beige);
  padding: 80px 0;
}

.section-white {
  background-color: var(--warm-white);
  padding: 80px 0;
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--violet-dark);
  margin-bottom: 1rem;
}

p {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.rounded-img {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--violet-primary), var(--violet-light));
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(155, 127, 168, 0.3);
  background: linear-gradient(135deg, var(--violet-dark), var(--violet-primary));
}

.faq-item {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.contact-form {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

.contact-info {
  color: var(--text-medium);
  font-size: 1rem;
}

.contact-info strong {
  color: var(--violet-primary);
  font-size: 1.1rem;
}

.footer-section {
  background-color: var(--text-dark);
  color: var(--warm-gray);
  padding: 40px 0;
  margin-top: 0;
}

.footer-links {
  margin-top: 1rem;
}

.footer-links a {
  color: var(--warm-gray);
  margin: 0 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(45, 42, 39, 0.97);
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  display: none;
}

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

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

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-accept {
  background-color: var(--violet-primary);
  color: white;
}

.btn-cookie-accept:hover {
  background-color: var(--violet-dark);
}

.btn-cookie-reject {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-cookie-settings {
  background-color: var(--warm-gray);
  color: var(--text-dark);
}

.btn-cookie-settings:hover {
  background-color: var(--warm-beige);
}

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

.cookie-modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal-content h3 {
  color: var(--violet-primary);
  margin-bottom: 20px;
}

.cookie-option {
  margin-bottom: 15px;
}

.cookie-option label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-dark);
}

.cookie-option input[type="checkbox"] {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.policy-section {
  padding: 140px 0 80px;
  background-color: var(--warm-white);
}

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

.policy-section h2 {
  font-size: 1.8rem;
  color: var(--violet-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.update-date {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 2rem;
}

.back-link {
  text-align: center;
}

.thankyou-section {
  padding: 140px 0 80px;
  background-color: var(--warm-beige);
  min-height: 80vh;
}

.thankyou-section h1 {
  font-size: 2.8rem;
  color: var(--violet-primary);
  margin-bottom: 1.5rem;
}

.contact-reminder {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

  h2 {
    font-size: 1.8rem;
  }

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

  .cookie-buttons {
    justify-content: center;
  }
}
