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

body {
  font-family: system-ui, -apple-system, Roboto, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #333;
  background-color: #ffffff;
}

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.2rem 0;
}

.header .container {
  max-width: 1100px;
}

.logo {
  color: #2E7D32;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
  text-decoration: none;
  color: #2E7D32;
}

.nav-link {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: #2E7D32;
  text-decoration: none;
}

.hero-section {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

.hero-section h1 {
  font-size: 2.5rem;
  color: #2E7D32;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-section p {
  font-size: 1.15rem;
  color: #555;
}

h1 {
  font-size: 2.5rem;
  color: #2E7D32;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

h2 {
  font-size: 1.9rem;
  color: #2E7D32;
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.45rem;
  color: #2E7D32;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.content-section {
  padding: 3rem 0;
}

.content-section .container {
  max-width: 1100px;
}

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

.two-column-content.reverse {
  flex-direction: row-reverse;
}

.two-column-content .text-content {
  flex: 1;
}

.two-column-content .image-content {
  flex: 0 0 45%;
}

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

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

.content-image-left {
  float: left;
  margin: 0.5rem 2rem 1.5rem 0;
  max-width: 45%;
}

.content-image-right {
  float: right;
  margin: 0.5rem 0 1.5rem 2rem;
  max-width: 45%;
}

.btn-custom {
  background-color: #2E7D32;
  color: #ffffff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 4px;
  transition: background-color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-custom:hover {
  background-color: #1B5E20;
  color: #ffffff;
  text-decoration: none;
}

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

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

.faq-section {
  background-color: #f8f9fa;
  padding: 3rem 0;
}

.faq-item {
  background-color: #ffffff;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

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

.contact-form {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 4px;
  margin-top: 2rem;
}

.contact-form .form-control {
  border: 1px solid #ddd;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 4px;
}

.contact-form .form-control:focus {
  border-color: #2E7D32;
  box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.15);
}

.footer {
  background-color: #2E7D32;
  color: #ffffff;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}

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

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

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

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

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

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

.policy-content {
  padding: 3rem 0;
}

.policy-content h2 {
  margin-top: 2rem;
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  body {
    font-size: 1rem;
  }

  .two-column-content {
    flex-direction: column;
  }

  .two-column-content.reverse {
    flex-direction: column;
  }

  .two-column-content .image-content {
    flex: 0 0 100%;
  }

  .content-image-left,
  .content-image-right {
    float: none;
    max-width: 100%;
    margin: 1.5rem 0;
  }

  .hero-section {
    padding: 2rem 0;
  }

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

  .cookie-banner {
    font-size: 0.9rem;
  }
}
