:root {
  --primary-green: #4A8C6B;
  --light-bg: #FAFAF8;
  --white: #FFFFFF;
  --dark-text: #2C2C2C;
  --light-text: #5A5A5A;
  --border-light: #E8E8E6;
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--light-bg);
  color: var(--dark-text);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Garamond', serif;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-green);
  display: inline-block;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--light-text);
  line-height: 1.8;
}

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

a:hover {
  opacity: 0.8;
}

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

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

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

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

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

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

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

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

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

.hero {
  background: linear-gradient(135deg, rgba(74, 140, 107, 0.05) 0%, rgba(250, 250, 248, 0) 100%);
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 4rem;
}

.hero-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin-bottom: 2rem;
  border-radius: var(--radius);
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--light-text);
}

.section {
  margin-bottom: 5rem;
  padding: 3rem 0;
}

.section h2 {
  margin-bottom: 2rem;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.section-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-text h3 {
  margin-top: 1.5rem;
}

.section-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.image-left {
  order: -1;
}

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

.blog-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

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

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

.faq {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border: none;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-text);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(74, 140, 107, 0.05);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--light-text);
  line-height: 1.8;
  display: none;
}

.faq.active .faq-answer {
  display: block;
}

.faq-toggle {
  color: var(--primary-green);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq.active .faq-toggle {
  transform: rotate(180deg);
}

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

.link-item {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary-green);
  transition: all 0.3s ease;
}

.link-item:hover {
  box-shadow: 0 4px 12px rgba(74, 140, 107, 0.15);
  transform: translateY(-2px);
}

.link-item a {
  font-size: 1.1rem;
  font-weight: 500;
}

.cta-section {
  background: rgba(74, 140, 107, 0.05);
  padding: 3rem;
  border-radius: var(--radius);
  text-align: center;
  margin: 3rem 0;
}

.cta-section p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: var(--primary-green);
  color: var(--white);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
}

.btn:hover {
  background-color: #3d6e54;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 140, 107, 0.3);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
}

.btn-secondary:hover {
  background-color: var(--primary-green);
  color: var(--white);
}

footer {
  background-color: var(--dark-text);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  border-top: 1px solid var(--border-light);
}

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

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

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

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

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

.footer-contact {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.disclaimer {
  background: rgba(74, 140, 107, 0.08);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 2rem 0;
  font-size: 0.95rem;
  color: var(--light-text);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-text);
  color: var(--white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
  z-index: 999;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.cookie-banner-actions button {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background: #3d6e54;
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.cookie-reject:hover {
  border-color: var(--white);
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

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

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

  h2 {
    font-size: 1.5rem;
  }

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

  .cookie-banner {
    padding: 1rem;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

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