:root {
  --primary-color: #40e0d0;
  --primary-dark: #36c4b5;
  --secondary-color: #2c3e50;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --background-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e5e5e5;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
}

.main-header .navbar {
  padding: 1rem 0;
}

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

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

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

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

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

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: var(--white);
}

.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5f4 100%);
  margin-top: 70px;
}

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

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

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

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

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

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

.rounded-lg {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

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

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

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

.faq-item:hover {
  box-shadow: var(--shadow-hover);
}

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

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

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

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

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

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(64, 224, 208, 0.25);
}

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

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

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

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

.main-footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 60px 0 30px;
}

.main-footer h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.main-footer p {
  margin-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

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

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

.cookie-buttons .btn {
  flex: 1;
  min-width: 120px;
}

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

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

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

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

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

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

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

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.thank-you-section {
  padding: 120px 0 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

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

.thank-you-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.thank-you-content h2 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.thank-you-content h3 {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.contact-details {
  background: var(--background-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

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

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

.policy-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.policy-content h2 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

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

.policy-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.policy-content a:hover {
  text-decoration: underline;
}

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

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

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

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

  .faq-section,
  .contact-section {
    padding: 60px 0;
  }

  .navbar-collapse {
    background: var(--white);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .btn-cta {
    margin-top: 1rem;
    display: block;
    text-align: center;
  }
}

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

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

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

  .contact-form {
    padding: 1.5rem;
  }

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

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