:root {
  --primary-green: #4caf50;
  --primary-green-dark: #388e3c;
  --primary-green-light: #81c784;
  --text-dark: #212121;
  --text-medium: #424242;
  --text-light: #757575;
  --bg-white: #ffffff;
  --bg-light: #f5f5f5;
  --bg-alt: #e8f5e9;
  --border-light: #e0e0e0;
}

* {
  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;
  background-color: var(--bg-white);
}

h1,
h2,
h3 {
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
  padding: 1rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-top: 1px solid var(--border-light);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner.hidden {
  display: none;
}

.btn-accept {
  background-color: var(--primary-green);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

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

.navbar {
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

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

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

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

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

.hero-section {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-alt) 100%);
  padding: 4rem 0;
}

.hero-section h1 {
  color: var(--text-dark);
}

.hero-section .lead {
  font-size: 1.25rem;
  color: var(--text-medium);
}

.hero-section .disclaimer-text {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 1rem;
}

.page-header {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-light) 100%);
  padding: 3rem 0;
  text-align: center;
}

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

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

.content-section h2:first-of-type {
  margin-top: 0;
}

.rounded-img {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.context-box {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-light) 100%);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0 12px 12px 0;
}

.context-box h3 {
  color: var(--primary-green-dark);
  margin-top: 0;
}

.context-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.info-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease;
}

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

.info-card h3 {
  color: var(--primary-green-dark);
}

.info-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.info-card img {
  margin-bottom: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--primary-green-light) 50%, var(--bg-alt) 100%);
}

.btn-primary-custom {
  background-color: var(--primary-green);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary-custom:hover {
  background-color: var(--primary-green-dark);
  color: white;
  transform: translateY(-2px);
}

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

.contact-info h3 {
  color: var(--primary-green-dark);
  margin-top: 0;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

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

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

.contact-form .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.footer-section {
  background-color: var(--text-dark);
  color: var(--bg-light);
  padding: 3rem 0 1rem;
}

.footer-section h3 {
  color: var(--primary-green-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--bg-light);
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-section .disclaimer-text {
  font-size: 0.8rem;
  opacity: 0.7;
  font-style: italic;
}

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

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

.footer-links a {
  color: var(--bg-light);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-green-light);
}

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

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
}

ul {
  color: var(--text-medium);
}

ul li {
  margin-bottom: 0.5rem;
}

@media (max-width: 991px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-section {
    padding: 3rem 0;
    text-align: center;
  }

  .hero-section img {
    margin-top: 2rem;
  }

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

  .content-section .row {
    flex-direction: column;
  }

  .content-section .col-lg-4 {
    order: -1;
    margin-bottom: 1.5rem;
  }
}

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

  h2 {
    font-size: 1.35rem;
  }

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

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

  .cookie-banner .col-md-4 {
    margin-top: 1rem;
  }

  .footer-section .col-md-4 {
    margin-bottom: 2rem;
  }
}
