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

html, body {
  font-family: Verdana, Geneva, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
  scroll-behavior: smooth;
}

h1 {
  font-size: 2.6rem;
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.1rem;
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 0.8rem;
  margin-top: 2rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.55rem;
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 0.6rem;
  margin-top: 1.2rem;
  line-height: 1.3;
}

p {
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #444;
}

header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}

.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;
  text-decoration: none;
  color: #1B5E20;
  font-weight: 700;
  font-size: 1.5rem;
  gap: 0.5rem;
}

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

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

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.35s;
}

nav a:hover {
  color: #1B5E20;
}

main {
  margin-top: 80px;
  padding: 0;
}

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

.hero-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-section .hero-content {
  flex: 1;
}

.hero-section img {
  flex: 1;
  width: 100%;
  max-width: 500px;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
  max-height: 400px;
  object-fit: cover;
}

.section {
  padding: 3rem 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.section-content img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
  max-height: 350px;
  object-fit: cover;
}

.faq-section {
  padding: 3rem 2rem;
  background-color: #fafafa;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem;
  cursor: pointer;
  font-weight: 600;
  color: #1B5E20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.35s;
}

.faq-question:hover {
  background-color: #f9f9f9;
}

.faq-question.active {
  background-color: #f0f8f3;
}

.faq-answer {
  padding: 0 1.2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s, padding 0.35s;
}

.faq-answer.active {
  padding: 1.2rem;
  max-height: 500px;
}

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

.article-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 1.5rem;
  transition: box-shadow 0.35s, transform 0.35s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-card:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.article-card h3 {
  color: #1B5E20;
  margin-top: 0;
}

.article-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.cta-button {
  display: inline-block;
  background-color: #1B5E20;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.35s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: #0d3812;
}

footer {
  background-color: #1B5E20;
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 3rem;
}

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

footer h3 {
  color: white;
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.8;
  transition: color 0.35s;
}

footer a:hover {
  color: white;
}

footer p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.disclaimer-box {
  background-color: #f0f8f3;
  border-left: 4px solid #1B5E20;
  padding: 1.2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box strong {
  color: #1B5E20;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 1rem;
  transition: border-color 0.35s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1B5E20;
  box-shadow: 0 0 0 2px rgba(27,94,32,0.1);
}

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

.form-max-width {
  max-width: 600px;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: white;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  z-index: 999;
  font-size: 0.95rem;
  border-top: 3px solid #1B5E20;
}

.cookie-consent p {
  margin: 0;
  color: white;
  font-size: 0.95rem;
}

.cookie-consent button {
  background-color: #1B5E20;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.35s;
  white-space: nowrap;
}

.cookie-consent button:hover {
  background-color: #0d3812;
}

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

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

  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.9rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero-section {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

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

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

  .section-content img {
    order: -1;
  }

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

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