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

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

a {
  color: #4A7C59;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #3a5f47;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #222;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #555;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: #4A7C59;
}

.logo img {
  width: 32px;
  height: 32px;
  margin-right: 0.75rem;
}

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

nav a {
  font-size: 0.95rem;
  color: #555;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #4A7C59;
}

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

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

.hero {
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-color: rgba(74, 124, 89, 0.7);
  background-blend-mode: overlay;
  margin-bottom: 3rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.hero-content p {
  font-size: 1.25rem;
  color: white;
}

.section {
  margin: 3rem 0;
  padding: 2rem 0;
}

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

.section-intro img, .section-intro-right img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.section-intro-text, .section-intro-right {
  line-height: 1.8;
}

.section-intro-text h3, .section-intro-right h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.section-intro-text p, .section-intro-right p {
  margin-bottom: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.card {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #4A7C59;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card h3 {
  margin-top: 0;
  color: #4A7C59;
}

.card p {
  color: #666;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  color: #4A7C59;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: #666;
  line-height: 1.8;
}

.cta-section {
  background-color: #f5f5f5;
  padding: 3rem 0;
  margin: 3rem 0;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.cta-section h2 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background-color: #4A7C59;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #3a5f47;
  color: white;
}

footer {
  background-color: #2c2c2c;
  color: #e0e0e0;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  border-top: 1px solid #444;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

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

.footer-column a {
  color: #bbb;
  font-size: 0.9rem;
}

.footer-column a:hover {
  color: #4A7C59;
}

.footer-contact {
  color: #bbb;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c2c2c;
  color: #fff;
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 2000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: #e0e0e0;
}

.cookie-banner button {
  background-color: #4A7C59;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.cookie-banner button:hover {
  background-color: #3a5f47;
}

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

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

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

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #4A7C59;
}

.submit-btn {
  background-color: #4A7C59;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #3a5f47;
}

.blog-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.blog-preview-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.blog-preview-card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

.blog-preview-content h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: #333;
}

.blog-preview-content p {
  margin-bottom: 1rem;
  color: #666;
  font-size: 0.95rem;
}

.read-more {
  display: inline-block;
  color: #4A7C59;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #3a5f47;
}

.article-content {
  max-width: 900px;
  margin: 0 auto;
}

.article-content img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
  display: block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.disclaimer {
  background-color: #f5f5f5;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #4A7C59;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: #555;
}

.contact-info {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid #4A7C59;
}

.contact-info p {
  margin-bottom: 0.75rem;
}

.contact-info strong {
  color: #333;
}

.hidden-by-cookie {
  display: none;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .header-container {
    padding: 1rem;
  }

  nav ul {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero {
    height: 300px;
  }

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

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

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

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .cookie-banner p {
    font-size: 0.85rem;
  }

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

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1rem;
  }

  nav ul {
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  main {
    margin-top: 60px;
  }

  header {
    padding: 0.75rem;
  }

  .hero-content h1 {
    font-size: 1.25rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero {
    height: 250px;
  }
}
