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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #2E7D32;
  text-decoration: none;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-menu a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #2E7D32;
}

.hero-section {
  margin-top: 70px;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 30px;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.section {
  padding: 60px 0;
}

.section-light {
  background-color: #f8f9fa;
}

.section-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: #2E7D32;
  font-weight: 600;
}

.section-subtitle {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 500;
}

.content-with-image {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}

.content-with-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

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

.text-content {
  flex: 1;
}

.text-content p {
  margin-bottom: 15px;
}

.text-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.text-content li {
  margin-bottom: 10px;
}

.disclaimer-box {
  background-color: #f0f7f1;
  border-left: 4px solid #2E7D32;
  padding: 25px;
  margin: 30px 0;
  border-radius: 6px;
}

.disclaimer-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #2E7D32;
}

.disclaimer-box p {
  margin-bottom: 10px;
  font-size: 16px;
}

.faq-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2E7D32;
}

.faq-item p {
  margin-bottom: 10px;
}

.cta-section {
  background-color: #2E7D32;
  color: #fff;
  text-align: center;
  padding: 50px 30px;
  border-radius: 6px;
  margin: 30px 0;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #fff;
  color: #2E7D32;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
  border: 2px solid #fff;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

.btn-primary {
  background-color: #2E7D32;
  color: #fff;
  border: 2px solid #2E7D32;
}

.btn-primary:hover {
  background-color: transparent;
  color: #2E7D32;
}

.contact-form {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 6px;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2E7D32;
}

.form-disclaimer {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-size: 15px;
}

.footer {
  background-color: #f8f9fa;
  padding: 50px 0 30px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #2E7D32;
  font-weight: 600;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #2E7D32;
}

.footer-section p {
  color: #666;
  margin-bottom: 8px;
  font-size: 15px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #ddd;
  color: #666;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 9999;
  display: none;
}

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

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  font-size: 15px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
}

.cookie-accept {
  background-color: #2E7D32;
  color: #fff;
}

.cookie-accept:hover {
  background-color: #1d5d21;
}

.educational-notice {
  background-color: #e3f2fd;
  border-left: 4px solid #2196F3;
  padding: 20px;
  margin: 30px 0;
  border-radius: 6px;
}

.educational-notice strong {
  display: block;
  margin-bottom: 10px;
  color: #2196F3;
}

@media (max-width: 768px) {
  .nav-menu {
    gap: 15px;
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 20px;
  }

  .content-with-image {
    flex-direction: column;
  }

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

  .content-with-image img {
    max-width: 100%;
  }

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

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 16px;
  }

  .logo {
    font-size: 20px;
  }

  .nav-menu {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-section {
    margin-top: 90px;
  }

  .hero-image {
    height: 350px;
  }

  .section {
    padding: 40px 0;
  }

  .contact-form {
    padding: 25px;
  }
}
