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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f8faf7 0%, #f5f7f3 100%);
}

:root {
  --primary-green: #006400;
  --light-green: #e8f5e9;
  --dark-gray: #2c3e50;
  --light-gray: #ecf0f1;
  --white: #ffffff;
  --text-primary: #333333;
  --text-secondary: #666666;
  --border-radius: 8px;
}

/* Header */
header {
  background: var(--white);
  border-bottom: 2px solid var(--light-green);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 100, 0, 0.05);
}

nav.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

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

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

/* Main Container */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 100, 0, 0.3), rgba(0, 100, 0, 0.4)), url('images/hero-banner.jpg') center/cover no-repeat;
  color: white;
  padding: 120px 15px;
  text-align: center;
  margin-top: 0;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Sections */
section {
  padding: 80px 15px;
}

section:nth-child(even) {
  background: var(--light-green);
}

section:nth-child(odd) {
  background: var(--white);
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
  line-height: 1.2;
}

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

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 2rem;
}

.section-text {
  padding: 20px 0;
}

.section-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.section-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 100, 0, 0.15);
  transition: transform 0.3s ease;
}

.section-image img:hover {
  transform: scale(1.02);
}

/* FAQ Section */
.faq-item {
  background: var(--white);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 4px rgba(0, 100, 0, 0.08);
}

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

/* Disclaimer */
.disclaimer-box {
  background: rgba(0, 100, 0, 0.08);
  border: 2px solid var(--primary-green);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-primary);
}

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

/* CTA Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-green);
  color: white;
  border: 2px solid var(--primary-green);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary-green);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

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

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

input[type="email"],
input[type="text"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
input[type="text"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(0, 100, 0, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
footer {
  background: var(--dark-gray);
  color: white;
  padding: 40px 15px 20px;
  margin-top: 80px;
  font-size: 0.9rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--light-green);
}

.footer-section ul {
  list-style: none;
}

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

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

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

.footer-contact {
  line-height: 1.8;
  color: #bbb;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 3px solid var(--primary-green);
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: none;
}

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

.cookie-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

#cookie-accept,
#cookie-decline {
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

#cookie-accept {
  background: var(--primary-green);
  color: white;
}

#cookie-accept:hover {
  opacity: 0.9;
}

#cookie-decline {
  background: var(--light-gray);
  color: var(--text-primary);
  border: 1px solid #ccc;
}

#cookie-decline:hover {
  background: #ddd;
}

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

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

  section {
    padding: 50px 15px;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cookie-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  #cookie-accept,
  #cookie-decline {
    width: 100%;
  }

  nav.navbar {
    padding: 0.5rem 0;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 15px;
  }

  .hero {
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  section {
    padding: 40px 15px;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
