:root {
  --color-primary: #7ec4a5;
  --color-secondary: #5ba88c;
  --color-accent: #f4a261;
  --color-bg: #fefefe;
  --color-bg-light: #f8f9fa;
  --color-text: #2c3e50;
  --color-text-light: #6c757d;
  --color-border: #e0e4e8;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

.site-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.site-header.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar {
  padding: 1rem 0;
}

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

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

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

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

.btn-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  margin-left: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(126, 196, 165, 0.3);
}

.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f0f8f5 0%, #fefefe 100%);
}

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

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

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

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

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

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

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

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

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

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

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(126, 196, 165, 0.4);
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

.btn-primary.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.rounded {
  border-radius: 12px;
}

.shadow-sm {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

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

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

.contact-form {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

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

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

.contact-info a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--color-secondary);
}

.closing-text {
  padding: 2rem;
  background-color: #fff;
  border-radius: 12px;
  border-left: 4px solid var(--color-primary);
}

.site-footer {
  background-color: var(--color-text);
  color: #fff;
  padding: 3rem 0 1.5rem;
  margin-top: 80px;
}

.site-footer h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.site-footer p {
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 62, 80, 0.98);
  color: #fff;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

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

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

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

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

.cookie-buttons .btn {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  white-space: nowrap;
}

.cookie-buttons .btn-secondary {
  background-color: #6c757d;
  border: none;
}

.cookie-buttons .btn-outline {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.cookie-buttons .btn-outline:hover {
  background-color: #fff;
  color: var(--color-text);
}

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

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

.cookie-modal-content {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

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

.cookie-option {
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: var(--color-bg-light);
  border-radius: 8px;
}

.cookie-option label {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
}

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

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

.cookie-modal-buttons .btn {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

.thank-you-content {
  background-color: #fff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.thank-you-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

  .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }

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

  .hero-section {
    padding: 120px 0 60px;
  }

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

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

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

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

  .cookie-buttons {
    width: 100%;
  }

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

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

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

  .contact-form {
    padding: 1.5rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

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

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

  .thank-you-content {
    padding: 2rem;
  }

  .thank-you-content h1 {
    font-size: 2rem;
  }
}
