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

:root {
  --primary-green: #355E3B;
  --bg-light: #FAFAF8;
  --text-dark: #2C2C2C;
  --text-light: #6B6B6B;
  --border-color: #E8E8E6;
  --accent-light: #F0F4ED;
  --shadow: 0 4px 13px rgba(0, 0, 0, 0.05);
  --border-radius: 8px;
  --transition: 0.33s ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: Calibri, Arial, sans-serif;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: #FFFFFF;
}

h1 {
  font-size: 2.62rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

h2 {
  font-size: 2.04rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  margin-top: 2rem;
  color: var(--text-dark);
}

h3 {
  font-size: 1.51rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
  color: var(--text-dark);
}

p {
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #2A4830;
  text-decoration: underline;
}

button, .btn {
  font-family: Calibri, Arial, sans-serif;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  background-color: var(--primary-green);
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color var(--transition);
  text-decoration: none;
  display: inline-block;
}

button:hover, .btn:hover {
  background-color: #2A4830;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

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

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

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--primary-green);
  text-decoration: none;
}

main {
  margin-top: 70px;
  padding: 3rem 0;
}

.hero {
  background-color: var(--accent-light);
  padding: 3rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.hero h1 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

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

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

.section-title {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--primary-green);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.two-column img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: var(--accent-light);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-green);
}

.faq-item h3 {
  margin-top: 0;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.faq-item p {
  margin-bottom: 0;
}

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

.blog-card {
  background-color: var(--accent-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

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

.blog-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card h3 {
  margin-top: 0;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.blog-card p {
  flex-grow: 1;
}

.blog-card a {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
}

footer {
  background-color: #F0F0EE;
  color: var(--text-dark);
  padding: 3rem 0;
  margin-top: 3rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.95rem;
}

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

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

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

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

.footer-section ul li a {
  color: var(--text-light);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
  color: var(--text-light);
}

.footer-bottom p {
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  font-family: Calibri, Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: border-color var(--transition);
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: #FFFFFF;
  padding: 1.5rem;
  z-index: 999;
  box-shadow: 0 -4px 13px rgba(0, 0, 0, 0.15);
  display: none;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner.visible {
  display: flex;
}

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

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

.cookie-buttons button {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
}

.cookie-buttons .accept-btn {
  background-color: var(--primary-green);
}

.cookie-buttons .accept-btn:hover {
  background-color: #2A4830;
}

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

.disclaimer-box h3 {
  margin-top: 0;
  color: var(--primary-green);
}

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

.article-meta {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.article-img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--primary-green);
  font-weight: 600;
}

.back-link:before {
  content: "← ";
}

.text-center {
  text-align: center;
}

.text-balance {
  text-wrap: balance;
}

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

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.95rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

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

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

  .contact-form {
    max-width: 100%;
  }

  main {
    padding: 1.5rem 0;
  }

  .hero {
    padding: 1.5rem 0;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }
}
