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

:root {
  --primary-color: #5B8A72;
  --bg-light: #F9F7F4;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --accent-beige: #E8E1D8;
  --white: #FFFFFF;
  --border-light: #E0D9D0;
}

html, body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: Georgia, serif;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

h1 {
  font-size: 2.5rem;
  margin-top: 0;
}

h2 {
  font-size: 2rem;
  color: var(--primary-color);
  border-bottom: 2px solid var(--accent-beige);
  padding-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

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

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

.logo {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

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

nav a {
  color: var(--text-dark);
  font-size: 1rem;
  transition: color 0.3s ease;
}

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

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

.hero {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero h1 {
  font-size: 3rem;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

section {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-height: 400px;
  object-fit: cover;
}

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

.accent-box h3 {
  margin-top: 0;
}

footer {
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 3rem 2rem;
  margin-top: 4rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

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

.footer-section h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-light);
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

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

.faq-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 1.1rem;
}

.faq-item p {
  display: none;
}

.faq-item.active p {
  display: block;
  margin-top: 1rem;
}

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

.blog-card {
  background-color: var(--accent-beige);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

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

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

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

.blog-card p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.blog-card a {
  color: var(--primary-color);
  font-weight: 500;
}

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

.cta-button:hover {
  background-color: #4a6f5c;
  text-decoration: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
}

form label {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(91, 138, 114, 0.1);
}

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

.disclaimer {
  background-color: var(--accent-beige);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

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

.cookie-banner-text {
  flex: 1;
  color: var(--text-light);
  font-size: 0.95rem;
}

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

.cookie-banner button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: #4a6f5c;
}

.cookie-decline {
  background-color: var(--accent-beige);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.cookie-decline:hover {
  background-color: var(--border-light);
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .header-container {
    padding: 0 1rem;
  }

  nav {
    gap: 1.5rem;
  }

  nav a {
    font-size: 0.9rem;
  }

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

  .hero {
    height: 300px;
  }

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

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

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

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

  section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

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

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

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