@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid #E0E0E0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #3A7B44;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease-in-out;
}

nav a:hover {
  color: #3A7B44;
}

main {
  margin-top: 70px;
  min-height: 100vh;
}

section {
  padding: 100px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-full-width {
  width: 100%;
  padding: 100px 20px;
}

.section-bg-primary {
  background-color: #3A7B44;
  color: #ffffff;
}

.section-bg-accent-light {
  background-color: #A6D4DF;
}

.section-bg-accent-yellow {
  background-color: #F2C75B;
}

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

.hero {
  text-align: center;
  padding: 120px 20px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 30px;
  color: #3A7B44;
  text-balance: true;
}

.hero p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-image {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 40px 0;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 30px;
}

.card h3 {
  margin-bottom: 15px;
  color: #3A7B44;
}

.card p {
  font-size: 16px;
  line-height: 1.6;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 40px 0;
}

.two-column-image {
  position: relative;
}

.two-column-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: block;
}

.two-column-text h3 {
  color: #3A7B44;
  margin-bottom: 20px;
}

.two-column-text p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
}

.list-styled {
  list-style: none;
  margin: 20px 0;
}

.list-styled li {
  padding: 12px 0 12px 40px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}

.list-styled li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3A7B44;
  font-weight: bold;
  font-size: 20px;
}

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

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

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

.faq-question {
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  color: #3A7B44;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.2s ease-in-out;
}

.faq-question:hover {
  color: #2a5a31;
}

.faq-toggle {
  font-size: 20px;
  transition: transform 0.3s ease-in-out;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  padding-top: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 15px;
}

.button {
  display: inline-block;
  padding: 14px 32px;
  background-color: #3A7B44;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
}

.button:hover {
  background-color: #2a5a31;
  box-shadow: 0 4px 12px rgba(58, 123, 68, 0.3);
}

.button-secondary {
  background-color: #A6D4DF;
  color: #2c2c2c;
}

.button-secondary:hover {
  background-color: #8bc4d0;
}

.button-outline {
  background-color: transparent;
  color: #3A7B44;
  border: 2px solid #3A7B44;
}

.button-outline:hover {
  background-color: #3A7B44;
  color: #ffffff;
}

form {
  max-width: 500px;
  margin: 40px auto;
}

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

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c2c2c;
  font-size: 14px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  transition: border-color 0.2s ease-in-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #3A7B44;
  box-shadow: 0 0 0 3px rgba(58, 123, 68, 0.1);
}

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

.form-disclaimer {
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 6px;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

footer {
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 60px 20px 30px;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
}

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

.footer-section h4 {
  margin-bottom: 20px;
  font-size: 16px;
  color: #F2C75B;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-section a {
  color: #A6D4DF;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease-in-out;
  cursor: pointer;
}

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

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 30px;
  text-align: center;
  font-size: 13px;
  color: #999;
}

.disclaimer {
  background-color: #f0f7f1;
  border-left: 4px solid #3A7B44;
  padding: 20px;
  border-radius: 6px;
  margin: 30px 0;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

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

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fefefe;
  padding: 40px;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 20px;
}

.modal-header h2 {
  margin: 0;
  color: #3A7B44;
}

.modal-close {
  font-size: 32px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  border: none;
  background: none;
  transition: color 0.2s ease-in-out;
}

.modal-close:hover {
  color: #000;
}

.modal-body {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.modal-body h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  color: #3A7B44;
}

.modal-body ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.modal-body li {
  margin-bottom: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 20px;
  z-index: 1500;
  display: none;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.active {
  display: flex;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  min-width: 250px;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}

.cookie-accept {
  background-color: #3A7B44;
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #2a5a31;
}

.cookie-decline {
  background-color: #E0E0E0;
  color: #2c2c2c;
}

.cookie-decline:hover {
  background-color: #d0d0d0;
}

.cookie-learn {
  background-color: transparent;
  color: #A6D4DF;
  border: 1px solid #A6D4DF;
}

.cookie-learn:hover {
  background-color: #A6D4DF;
  color: #2c2c2c;
}

.thank-you-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  z-index: 3000;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  display: none;
}

.thank-you-modal.active {
  display: block;
}

.thank-you-modal h2 {
  color: #3A7B44;
  margin-bottom: 15px;
}

.thank-you-modal p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.thank-you-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2999;
  display: none;
}

.thank-you-overlay.active {
  display: block;
}

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

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  nav ul {
    gap: 15px;
  }

  nav a {
    font-size: 12px;
  }

  section {
    padding: 60px 15px;
  }

  .hero {
    padding: 80px 15px;
  }

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

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

  .two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    gap: 8px;
  }

  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
  }

  nav {
    width: 100%;
  }

  nav a {
    display: block;
    padding: 8px 0;
  }

  header {
    position: relative;
  }

  main {
    margin-top: 0;
  }

  section {
    padding: 40px 12px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  form {
    margin: 20px auto;
  }
}
