:root {
  --primary-green: #228B22;
  --light-bg: #f8fdf8;
  --text-dark: #2d3e2d;
  --border-light: #e0ede0;
}

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

body {
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
}

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

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

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 5px;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-green);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 15px;
  transition: color 0.3s;
}

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

.hero-section {
  margin-top: 70px;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
}

.content-section h2 {
  font-size: 36px;
  color: var(--primary-green);
  margin-bottom: 30px;
}

.content-section h3 {
  font-size: 24px;
  color: var(--primary-green);
  margin-bottom: 20px;
  margin-top: 30px;
}

.content-section p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
}

.image-left,
.image-right {
  max-width: 400px;
  height: auto;
  border-radius: 7px;
  box-shadow: 0 3px 8px rgba(34, 139, 34, 0.15);
  margin-bottom: 20px;
}

.image-left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

.image-right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.table-container {
  overflow-x: auto;
  margin: 30px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(34, 139, 34, 0.1);
}

th {
  background-color: var(--primary-green);
  color: #ffffff;
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--border-light);
}

tr:last-child td {
  border-bottom: none;
}

tr:nth-child(even) {
  background-color: var(--light-bg);
}

.faq-section {
  background-color: var(--light-bg);
  padding: 100px 20px;
}

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

.faq-item {
  background-color: #ffffff;
  margin-bottom: 15px;
  border-radius: 7px;
  box-shadow: 0 2px 4px rgba(34, 139, 34, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary-green);
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: var(--light-bg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
}

.faq-answer.active {
  max-height: 500px;
  padding: 0 20px 20px 20px;
}

.disclaimer-box {
  background-color: #fff9e6;
  border-left: 5px solid var(--primary-green);
  padding: 25px;
  margin: 40px 0;
  border-radius: 5px;
}

.disclaimer-box h3 {
  color: var(--primary-green);
  margin-top: 0;
}

.cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: var(--light-bg);
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--primary-green);
  color: #ffffff;
  text-decoration: none;
  border-radius: 7px;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 3px 6px rgba(34, 139, 34, 0.2);
}

.cta-button:hover {
  background-color: #1a6b1a;
  transform: translateY(-2px);
}

.contact-section {
  padding: 100px 20px;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-form {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 7px;
  box-shadow: 0 3px 8px rgba(34, 139, 34, 0.15);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-light);
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.submit-button {
  background-color: var(--primary-green);
  color: #ffffff;
  padding: 15px 40px;
  border: none;
  border-radius: 7px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.submit-button:hover {
  background-color: #1a6b1a;
  transform: translateY(-2px);
}

footer {
  background-color: #1a3d1a;
  color: #ffffff;
  padding: 60px 20px 30px;
}

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

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

.footer-section h4 {
  color: var(--primary-green);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p,
.footer-section a {
  color: #ffffff;
  line-height: 1.8;
  font-size: 15px;
}

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

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-button {
  background-color: var(--primary-green);
  color: #ffffff;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.cookie-button:hover {
  background-color: #1a6b1a;
}

.modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.modal.show {
  display: block;
}

.modal-content {
  background-color: #ffffff;
  margin: 50px auto;
  padding: 40px;
  max-width: 800px;
  border-radius: 7px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--primary-green);
}

.modal-content h2 {
  color: var(--primary-green);
  margin-bottom: 20px;
}

.modal-content h3 {
  color: var(--primary-green);
  margin-top: 25px;
  margin-bottom: 15px;
}

.modal-content p,
.modal-content ul {
  margin-bottom: 15px;
  line-height: 1.8;
}

.modal-content ul {
  padding-left: 25px;
}

.success-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 40px;
  border-radius: 7px;
  box-shadow: 0 5px 20px rgba(34, 139, 34, 0.3);
  z-index: 3000;
  text-align: center;
  max-width: 400px;
}

.success-popup.show {
  display: block;
}

.success-popup h3 {
  color: var(--primary-green);
  margin-bottom: 15px;
}

.success-popup button {
  margin-top: 20px;
  background-color: var(--primary-green);
  color: #ffffff;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.success-popup button:hover {
  background-color: #1a6b1a;
}

@media (max-width: 768px) {
  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 14px;
  }

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

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

  .content-section {
    padding: 70px 20px;
  }

  .content-section h2 {
    font-size: 28px;
  }

  .image-left,
  .image-right {
    float: none;
    margin: 0 auto 20px;
    display: block;
    max-width: 100%;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

  .modal-content {
    margin: 20px;
    padding: 30px 20px;
  }
}
