:root {
  --primary-green: #5a9f7e;
  --primary-green-dark: #4a8a6b;
  --neutral-light: #f8f9fa;
  --neutral-medium: #e9ecef;
  --neutral-dark: #495057;
  --text-primary: #333333;
  --text-secondary: #6c757d;
  --white: #ffffff;
  --border-radius: 8px;
}

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

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

.site-header {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

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

.brand-name {
  color: var(--primary-green);
}

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

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

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

.nav-item.active .nav-link {
  color: var(--primary-green);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%235a9f7e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(90, 159, 126, 0.85) 0%, rgba(74, 138, 107, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  font-weight: 300;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.1rem;
  font-weight: 300;
}

.content-section {
  padding: 4rem 0;
}

.section-block {
  margin-bottom: 3rem;
}

.section-block h2 {
  color: var(--primary-green);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-block h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.section-block p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.image-grid {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.image-grid .col-md-4,
.image-grid .col-md-6 {
  margin-bottom: 1.5rem;
}

.single-image {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.img-fluid.rounded {
  border-radius: var(--border-radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.styled-list {
  list-style: none;
  padding-left: 0;
}

.styled-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.styled-list li:before {
  content: "•";
  color: var(--primary-green);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}

.info-box {
  background-color: var(--neutral-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-green);
}

.info-box h3 {
  color: var(--primary-green);
  font-size: 1.2rem;
  margin-top: 0;
}

.warning-box {
  border-left-color: #dc3545;
}

.warning-box h3 {
  color: #dc3545;
}

.info-box ul {
  margin-bottom: 0;
}

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  background-color: var(--neutral-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.faq-item h3 {
  color: var(--primary-green);
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.faq-item p {
  margin-bottom: 0;
}

.cta-section {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: var(--white);
  border-radius: var(--border-radius);
  margin-top: 3rem;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn-primary-custom {
  background-color: var(--white);
  color: var(--primary-green);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: var(--neutral-light);
  color: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary-custom {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  background-color: var(--white);
  color: var(--primary-green);
}

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

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item strong {
  display: block;
  color: var(--primary-green);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

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

.contact-form {
  background-color: var(--neutral-light);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.form-group label {
  font-weight: 600;
  color: var(--text-primary);
}

.form-control {
  border: 1px solid var(--neutral-medium);
  border-radius: var(--border-radius);
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(90, 159, 126, 0.25);
}

.form-check-label {
  font-weight: normal;
}

.form-check-label a {
  color: var(--primary-green);
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-box {
  text-align: center;
  max-width: 600px;
  padding: 3rem;
  background-color: var(--neutral-light);
  border-radius: var(--border-radius);
}

.thank-you-box h1 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.thank-you-box p {
  margin-bottom: 1.5rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content .section-block {
  margin-bottom: 2.5rem;
}

.legal-content ul {
  padding-left: 2rem;
}

.legal-content table {
  margin-top: 1rem;
}

.highlight-text {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
}

.site-footer {
  background-color: var(--text-primary);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.site-footer h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.8);
}

.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: var(--primary-green);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-copyright {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content h3 {
  color: var(--primary-green);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cookie-link {
  color: var(--primary-green);
  text-decoration: underline;
}

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

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

  .page-header h1 {
    font-size: 2rem;
  }

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

  .cta-section {
    padding: 2rem 1rem;
  }

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

  .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-bottom .text-right {
    text-align: left !important;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 400px;
  }

  .hero-content {
    padding: 1rem;
  }

  .content-section {
    padding: 2rem 0;
  }

  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }
}
