:root {
  --primary-color: #2E7D32;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #F9F9F9;
  --white: #FFFFFF;
  --border-color: #E0E0E0;
}

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

body {
  font-family: system-ui, -apple-system, Roboto, 'Segoe UI', Helvetica, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-dark);
  background-color: var(--white);
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

h2 {
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  margin-top: 3rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  margin-top: 2rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1.2rem;
}

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

a:hover {
  opacity: 0.8;
}

.header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.header nav a {
  color: var(--text-dark);
  margin-left: 2rem;
  font-size: 1rem;
}

.hero {
  background-color: var(--bg-light);
  padding: 4rem 0;
  text-align: center;
}

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

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

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background-color: var(--bg-light);
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.content-with-image {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.content-with-image.reverse {
  flex-direction: row-reverse;
}

.content-with-image .text-content {
  flex: 1;
}

.content-with-image .image-content {
  flex: 0 0 40%;
}

.content-with-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

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

.card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 1.8rem;
}

.card h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.disclaimer-box {
  background-color: #FFF8E1;
  border-left: 4px solid #FFA726;
  padding: 1.5rem;
  margin: 2.5rem 0;
}

.disclaimer-box h3 {
  margin-top: 0;
  font-size: 1.25rem;
  color: #E65100;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.btn:hover {
  opacity: 0.85;
  color: var(--white);
}

.faq-item {
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.contact-form {
  max-width: 500px;
  margin: 2rem 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

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

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

.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-top: 0;
}

.footer a {
  color: var(--white);
  opacity: 0.85;
}

.footer a:hover {
  opacity: 1;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  opacity: 0.7;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 2px solid var(--border-color);
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 2000;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.cookie-banner .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  body {
    font-size: 1rem;
  }
  
  .header nav a {
    margin-left: 1rem;
    font-size: 0.9rem;
  }
  
  .content-with-image {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .content-with-image.reverse {
    flex-direction: column;
  }
  
  .content-with-image .image-content {
    flex: 1;
  }
  
  .hero {
    padding: 2.5rem 0;
  }
  
  .section {
    padding: 2.5rem 0;
  }
}
