:root {
  --primary-bg: #f1f8e9;
  --primary-accent: #7cb342;
  --dark-accent: #33691e;
  --text-dark: #2e3d1e;
  --white: #ffffff;
  --light-accent: #f9fbe7;
}

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

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  font-size: 17.5px;
  line-height: 1.74;
  font-weight: 400;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.8px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 48px;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  line-height: 1.2;
}

h2 {
  font-size: 36px;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h3 {
  font-size: 24px;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

p {
  margin-bottom: 1.2rem;
  max-width: 700px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0);
  transition: box-shadow 0.28s ease;
  backdrop-filter: blur(4px);
}

header.scrolled {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.header-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color 0.2s;
}

.logo:hover {
  color: var(--primary-accent);
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  margin-left: 2rem;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--primary-accent);
  animation: pulse 0.2s ease;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

main {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 3rem;
}

.hero {
  background-color: var(--primary-bg);
  margin: 3rem -3rem 0 -3rem;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 61, 30, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-text h1 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--light-accent);
}

.section:last-child {
  border-bottom: none;
}

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

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 300px;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: brightness 0.32s ease, transform 0.32s ease;
}

.content-image:hover img {
  brightness: 1.1;
  transform: scale(1.045);
  filter: drop-shadow(0 9px 18px rgba(0, 0, 0, 0.1));
}

.card {
  background: var(--light-accent);
  padding: 2rem;
  border-radius: 8px;
  transition: box-shadow 0.32s ease, transform 0.32s ease;
  cursor: pointer;
}

.card:hover {
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--light-accent);
}

table th {
  background: var(--primary-accent);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

table tr:hover {
  background: #f0f5e0;
}

.faq-item {
  background: var(--light-accent);
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.32s ease;
}

.faq-item:hover {
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.08);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-accent);
  color: white;
  border: none;
  width: 100%;
  font-size: 16px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--dark-accent);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  background: var(--light-accent);
}

.faq-answer.active {
  display: block;
}

.faq-toggle {
  transition: transform 0.3s ease;
}

.faq-toggle.active {
  transform: rotate(180deg);
}

form {
  background: var(--primary-bg);
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
}

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

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.2s;
}

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

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary-accent);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn:hover {
  background: var(--dark-accent);
  transform: scale(1.02);
  animation: pulse 0.2s ease;
}

.btn-link {
  color: var(--primary-accent);
  text-decoration: none;
  border: none;
  padding: 0.5rem 0;
  background: none;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.2s;
}

.btn-link:hover {
  color: var(--dark-accent);
}

footer {
  background: var(--text-dark);
  color: var(--light-accent);
  padding: 3rem;
  margin-top: 5rem;
  text-align: center;
}

.footer-content {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer-section h3 {
  color: var(--primary-accent);
  margin-bottom: 1rem;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section a {
  color: var(--light-accent);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 14px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(124, 179, 66, 0.2);
  padding-top: 2rem;
  font-size: 13px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--white);
  margin: auto;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 28px;
  font-weight: bold;
  color: var(--text-dark);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--primary-accent);
}

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

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.cookie-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}

.cookie-accept {
  background: var(--primary-accent);
  color: white;
}

.cookie-accept:hover {
  background: var(--primary-accent);
  opacity: 0.9;
}

.cookie-reject {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-more {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-more:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.disclaimer h2 {
  margin-top: 0;
  color: var(--dark-accent);
}

.thank-you-modal {
  display: none;
  position: fixed;
  z-index: 300;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.thank-you-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
}

.thank-you-content h2 {
  color: var(--primary-accent);
  margin-bottom: 1rem;
}

.thank-you-content p {
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem 1.5rem;
  }

  nav a {
    margin-left: 1rem;
    font-size: 12px;
  }

  main {
    padding: 0 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    margin: 2rem -1.5rem 0 -1.5rem;
    padding: 2rem 1.5rem;
  }

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

  .content-grid.reverse {
    direction: ltr;
  }

  .content-image {
    height: 250px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
    margin-top: 2rem;
  }

  h3 {
    font-size: 18px;
  }

  body {
    font-size: 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section a {
    text-align: center;
  }

  .cookie-banner.show {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cookie-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .modal-content {
    margin: 1rem;
    max-width: 90vw;
  }
}
