:root {
  --primary-green: #b8d4b8;
  --light-green: #e8f5e8;
  --text-dark: #2c3e2c;
  --text-gray: #5a5a5a;
  --bg-light: #fafafa;
  --white: #ffffff;
  --border-light: #e0e0e0;
}

* {
  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);
  background-color: var(--bg-light);
  line-height: 1.6;
}

.navbar {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-green) 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}

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

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

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

.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

.section-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

.section-card h3 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.section-card p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.section-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.category-item {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.category-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

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

.disclaimer-box h3 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-box p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}

.cta-box h3 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.btn-custom {
  background: var(--text-dark);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

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

.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1a251a 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

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

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

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

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

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

.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

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

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

.contact-form button {
  background: var(--text-dark);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
  width: 100%;
}

.contact-form button:hover {
  background: var(--primary-green);
  color: var(--text-dark);
}

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

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

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

.cookie-banner button {
  background: var(--primary-green);
  color: var(--text-dark);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-banner button:hover {
  background: var(--light-green);
}

@media (max-width: 768px) {
  .hero-image {
    height: 250px;
  }
  
  .section-card {
    padding: 1.5rem;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .section-card h2 {
    font-size: 1.5rem;
  }
}
