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

:root {
  --primary-green: #2d7a4f;
  --secondary-green: #4a9d6f;
  --light-green: #e8f5e9;
  --dark-green: #1b4d30;
  --text-dark: #1a1a1a;
  --text-gray: #555555;
  --background: #ffffff;
  --background-light: #f8f9fa;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --border-radius: 12px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}

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

.navbar {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}

.hero-section {
  min-height: 600px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.btn-custom {
  background: #ffffff;
  color: var(--primary-green);
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: inline-block;
  text-decoration: none;
}

.btn-custom:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--primary-green);
  text-decoration: none;
}

.btn-outline-custom {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: #ffffff;
  color: var(--primary-green);
  text-decoration: none;
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--primary-green);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

.content-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.content-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.content-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.content-card h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

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

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.image-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.footer {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  color: #ffffff;
  padding: 3rem 0 1rem;
}

.footer h5 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-green);
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.cookie-banner .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 122, 79, 0.15);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.disclaimer-box {
  background: var(--light-green);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-box p {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

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

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

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

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }
}
