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

:root {
  --primary-color: #006400;
  --primary-dark: #004d00;
  --primary-light: #1a8c1a;
  --neutral-50: #f9f9f9;
  --neutral-100: #f0f0f0;
  --neutral-200: #e0e0e0;
  --neutral-400: #9e9e9e;
  --neutral-600: #424242;
  --neutral-900: #1a1a1a;
  --white: #ffffff;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  --transition: 0.35s ease-in-out;
}

body {
  font-family: 'Arial', sans-serif;
  font-size: 1.04rem;
  line-height: 1.6;
  color: var(--neutral-900);
  background-color: var(--neutral-50);
}

h1 {
  font-family: 'Georgia', serif;
  font-size: 2.7rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--neutral-900);
}

h2 {
  font-family: 'Georgia', serif;
  font-size: 2.15rem;
  line-height: 1.3;
  margin: 2rem 0 1.5rem 0;
  color: var(--neutral-900);
}

h3 {
  font-family: 'Georgia', serif;
  font-size: 1.58rem;
  line-height: 1.3;
  margin: 1.5rem 0 1rem 0;
  color: var(--neutral-900);
}

p {
  margin-bottom: 1.2rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

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

a:hover {
  color: var(--primary-dark);
}

button, .btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color var(--transition);
  font-family: inherit;
}

button:hover, .btn:hover {
  background-color: var(--primary-dark);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 1rem 2rem;
}

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

.logo {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--neutral-900);
  font-weight: 500;
  transition: color var(--transition);
}

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

main {
  margin-top: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
}

.hero {
  background-color: var(--neutral-100);
  padding: 4rem 2rem;
  border-radius: 12px;
  margin-bottom: 4rem;
  box-shadow: var(--shadow);
}

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

.hero p {
  font-size: 1.2rem;
  color: var(--neutral-600);
  margin-bottom: 2rem;
}

.section {
  margin: 3rem 0;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.section h2 {
  color: var(--primary-color);
  margin-top: 0;
}

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

.two-column img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.two-column img:hover {
  transform: translateY(-5px);
}

.image-left {
  order: -1;
}

footer {
  background-color: var(--neutral-900);
  color: var(--white);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--neutral-100);
  display: block;
  margin-bottom: 0.5rem;
}

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

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: var(--neutral-200);
}

.faq-item {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background-color: var(--neutral-50);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  transition: transform var(--transition);
}

.faq-item:hover {
  transform: translateX(5px);
}

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

form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 2rem 0;
}

form label {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--neutral-900);
}

form input,
form textarea {
  margin-top: 0.5rem;
  padding: 0.8rem;
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

form button {
  margin-top: 1.5rem;
  align-self: flex-start;
}

.disclaimer {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.disclaimer p {
  color: #856404;
}

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

.blog-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
}

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

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-900);
  color: var(--white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
}

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

.cookie-buttons button {
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
}

.cookie-buttons .btn-secondary {
  background-color: var(--neutral-600);
}

.cookie-buttons .btn-secondary:hover {
  background-color: var(--neutral-400);
}

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

  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  main {
    margin-top: 180px;
    padding: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

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

  .image-left {
    order: 0;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

  .cookie-buttons button {
    width: 100%;
  }

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