@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@900&family=Noto+Sans:wght@400;700&display=swap');

:root {
  --primary-bg: #E8F5E9;
  --primary-green: #43A047;
  --dark-green: #2E7D32;
  --light-green: #66BB6A;
  --teal-accent: #B2DFDB;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(56px, 8vw, 94px);
  line-height: 1.2;
  color: var(--primary-green);
  text-shadow: 0 2px 8px rgba(67, 160, 71, 0.15);
  margin-bottom: 1rem;
}

h2 {
  font-size: 48px;
  color: var(--primary-green);
  margin-bottom: 2rem;
}

h3 {
  font-size: 32px;
  color: var(--dark-green);
  margin-bottom: 1.5rem;
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

strong, .highlight {
  color: var(--primary-green);
  font-weight: 700;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--white);
  border-bottom: 1px solid #f0f0f0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
}

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

.logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-green);
  text-decoration: none;
  cursor: pointer;
  font-family: 'Exo 2', sans-serif;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

main {
  margin-top: 80px;
}

.section {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 6%;
  scroll-margin-top: 80px;
}

.full-bleed-section {
  width: 100%;
  padding: 140px 6%;
}

.section-spacing {
  margin: 140px auto;
}

.hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(66, 187, 106, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 80px;
}

.hero-content {
  max-width: 1460px;
  width: 100%;
  padding: 0 6%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-section {
  background-color: var(--primary-bg);
  padding: 140px 6%;
  text-align: center;
}

.intro-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  list-style: none;
}

.approach-list li {
  padding: 2rem;
  background-color: var(--primary-bg);
  border-left: 4px solid var(--primary-green);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.approach-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 16px rgba(67, 160, 71, 0.15);
}

.approach-list li strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 18px;
}

.card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
  box-shadow: 0 16px 32px rgba(67, 160, 71, 0.2);
  transform: scale(1.08);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.selection-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  list-style: none;
}

.selection-list li {
  padding: 1.5rem;
  background-color: var(--primary-bg);
  border-radius: 4px;
  padding-left: 2.5rem;
  position: relative;
}

.selection-list li:before {
  content: '✓';
  position: absolute;
  left: 1rem;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

th {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 700;
}

td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

tr:hover {
  background-color: var(--primary-bg);
}

.regions-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.regions-section:nth-child(even) {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.regions-section:nth-child(even) > * {
  direction: ltr;
}

.regions-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.data-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  list-style: none;
}

.data-list li {
  padding: 1.5rem;
  background-color: var(--primary-bg);
  border-radius: 4px;
  border-left: 4px solid var(--light-green);
}

.data-list li strong {
  display: block;
  margin-bottom: 0.5rem;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--primary-bg);
  border-radius: 4px;
}

.faq-item strong {
  display: block;
  margin-bottom: 1rem;
  font-size: 18px;
  cursor: pointer;
  color: var(--primary-green);
  transition: color 0.3s ease;
}

.faq-item strong:hover {
  color: var(--dark-green);
}

.faq-answer {
  display: none;
  padding: 1rem 0;
  line-height: 1.8;
}

.faq-answer.active {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.position-quote {
  padding: 2rem;
  background-color: var(--primary-bg);
  border-left: 4px solid var(--primary-green);
  border-radius: 4px;
  font-style: italic;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.position-quote img {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  object-fit: cover;
}

.disclaimer {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 4px;
  padding: 2rem;
  margin: 2rem 0;
  color: #856404;
}

.disclaimer strong {
  color: #856404;
  display: block;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.cta-button:hover {
  box-shadow: 0 12px 24px rgba(67, 160, 71, 0.3);
  transform: translateY(-3px);
}

.cta-button.secondary {
  background-color: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
}

.cta-button.secondary:hover {
  background-color: var(--primary-green);
  color: var(--white);
}

.contact-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 8px rgba(67, 160, 71, 0.2);
}

.form-disclaimer {
  background-color: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 14px;
  color: #2e7d32;
}

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

.footer-content {
  max-width: 1460px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 18px;
}

.footer-section p, .footer-section a {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

@keyframes fadeInModal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 2rem;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideInModal 0.3s ease;
}

@keyframes slideInModal {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.modal h2 {
  color: var(--primary-green);
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.modal ol, .modal ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.modal li {
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem 2rem;
  z-index: 1500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  animation: slideUpBanner 0.4s ease;
}

@keyframes slideUpBanner {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-buttons button {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background-color: var(--primary-green);
  color: var(--white);
}

.cookie-accept:hover {
  background-color: var(--light-green);
}

.cookie-reject {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-learn {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.cookie-learn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.thank-you-content {
  background-color: var(--white);
  margin: 15% auto;
  padding: 3rem;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  text-align: center;
  animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
  0%, 100% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.05);
  }
}

.thank-you-content h2 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.thank-you-content p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .nav-menu {
    gap: 1rem;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .hero-content {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-text, .hero-image {
    flex: 1;
  }

  .regions-section, .regions-section:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .regions-section:nth-child(even) > * {
    direction: ltr;
  }

  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons button {
    width: 100%;
  }
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
