:root {
  --primary: #228B22;
  --text: #1a1a1a;
  --bg: #f9f9f9;
  --border: #e0e0e0;
  --light: #f5f5f5;
}

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

html {
  font-size: 16px;
}

body {
  font-family: system-ui, -apple-system, Arial, "Helvetica Neue", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1.1rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  z-index: 1000;
  padding: 0 2rem;
}

header nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
}

.logo img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

main {
  margin-top: 70px;
  min-height: calc(100vh - 70px - 200px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1 {
  font-size: 2.74rem;
  line-height: 1.3;
  margin: 1.5rem 0 1rem 0;
  font-weight: 600;
}

h2 {
  font-size: 2.04rem;
  line-height: 1.3;
  margin: 2rem 0 1rem 0;
  font-weight: 600;
  color: var(--primary);
}

h3 {
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 1.5rem 0 0.75rem 0;
  font-weight: 600;
}

p {
  margin: 1rem 0;
  max-width: 750px;
}

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

.section:last-of-type {
  border-bottom: none;
}

.hero {
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.05) 0%, rgba(245, 245, 245, 0.5) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-image {
  width: 100%;
  height: auto;
  margin-top: 2rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  max-width: 600px;
}

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

.content-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.content-grid p {
  margin: 0;
}

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

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

.content-grid.image-right img {
  order: 2;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.25s ease, transform 0.25s ease;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: #1a6b1a;
  transform: translateY(-2px);
}

.faq-item {
  background: white;
  padding: 1.5rem;
  margin: 1rem 0;
  border-left: 4px solid var(--primary);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.faq-item h3 {
  margin-top: 0;
}

.blog-teaser {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.blog-card-content p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #666;
}

.blog-card-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.blog-card-content a:hover {
  color: #1a6b1a;
}

footer {
  background: var(--light);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 1rem 2rem;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

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

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

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  color: #999;
  font-size: 0.85rem;
}

.form-group {
  margin: 1.5rem 0;
  max-width: 500px;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

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

.disclaimer {
  background: rgba(34, 139, 34, 0.05);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  display: none;
  z-index: 900;
  animation: slideUp 0.3s ease;
}

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

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.cookie-text a:hover {
  text-decoration: underline;
}

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

.cookie-accept {
  background-color: var(--primary);
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color 0.25s ease;
}

.cookie-accept:hover {
  background-color: #1a6b1a;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  header nav {
    flex-direction: column;
    height: auto;
    padding: 1rem 0;
  }

  .nav-links {
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
  }

  main {
    margin-top: 100px;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 2rem 0;
  }

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

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

  .content-grid img {
    max-width: 100%;
  }

  .hero-image {
    max-width: 100%;
  }

  .blog-teaser {
    grid-template-columns: 1fr;
  }

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-accept {
    flex: 1;
  }
}
