:root {
  --color-primary: #e8f5e9;
  --color-accent-1: #66bb6a;
  --color-accent-2: #2e7d32;
  --color-white: #ffffff;
  --color-light: #f1f8e9;
  --color-text: #1b5e20;
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17.5px;
  line-height: 1.74;
  color: var(--color-text);
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.6px;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.8px;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.6px;
}

p {
  margin-bottom: 1.2rem;
  max-width: 700px;
}

a {
  color: var(--color-accent-2);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-accent-1);
  animation: pulse 0.2s ease;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: transparent;
  backdrop-filter: blur(0px);
  transition: all 0.28s ease;
  box-shadow: none;
  padding: 1.5rem 0;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  font-size: 24px;
}

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

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

nav a {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--color-text);
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--color-accent-1);
}

.container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 68px;
}

section {
  padding: 110px 0;
}

.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-light) 100%);
  padding: 0;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1520px;
  margin: 0 auto;
  padding: 110px 68px;
  color: var(--color-white);
}

.hero-content h1 {
  color: var(--color-white);
  font-size: 56px;
  max-width: 800px;
  margin-bottom: 1.5rem;
}

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

.section-grid.reverse {
  direction: rtl;
}

.section-grid.reverse > * {
  direction: ltr;
}

.section-grid img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  transition: all 0.32s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.section-grid img:hover {
  transform: scale(1.045);
  filter: brightness(1.08);
  box-shadow: 0 9px 32px rgba(0, 0, 0, 0.15);
}

.section-text {
  max-width: 600px;
}

.full-width-image {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin: 3rem 0;
}

.full-width-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.text-overlay-image {
  position: relative;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 2rem;
  align-items: center;
  margin: 3rem 0;
}

.text-overlay-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--color-light);
}

table th,
table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-primary);
}

table th {
  background-color: var(--color-accent-1);
  color: var(--color-white);
  font-weight: 600;
}

table tr:hover {
  background-color: rgba(102, 187, 106, 0.1);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--color-light);
}

.faq-question {
  padding: 1.5rem;
  background-color: var(--color-accent-1);
  color: var(--color-white);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: all 0.2s ease;
}

.faq-question:hover {
  background-color: var(--color-accent-2);
}

.faq-question.active {
  background-color: var(--color-accent-2);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.32s ease;
  background-color: var(--color-white);
}

.faq-answer.show {
  padding: 1.5rem;
  max-height: 1000px;
}

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

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

.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--color-accent-1);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.button:hover {
  background-color: var(--color-accent-2);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.button-secondary {
  background-color: var(--color-primary);
  color: var(--color-text);
  border: 2px solid var(--color-accent-1);
}

.button-secondary:hover {
  background-color: var(--color-accent-1);
  color: var(--color-white);
}

form {
  max-width: 600px;
  margin: 2rem 0;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-text);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 16px;
  color: var(--color-text);
  background-color: var(--color-white);
  transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent-1);
  box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.1);
}

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

.form-disclaimer {
  background-color: var(--color-light);
  padding: 1rem;
  border-radius: var(--radius);
  margin: 1rem 0;
  font-size: 14px;
  border-left: 4px solid var(--color-accent-1);
}

footer {
  background-color: var(--color-primary);
  border-top: 1px solid rgba(102, 187, 106, 0.2);
  padding: 3rem 0;
}

.footer-content {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 68px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 1rem;
}

.footer-section p {
  font-size: 15px;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-links a {
  font-size: 14px;
  cursor: pointer;
  color: var(--color-accent-2);
}

.footer-links a:hover {
  color: var(--color-accent-1);
}

.footer-bottom {
  border-top: 1px solid rgba(102, 187, 106, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 14px;
  color: var(--color-accent-2);
}

.footer-statement {
  font-weight: 600;
  margin: 1rem 0;
  color: var(--color-text);
  font-size: 15px;
}

.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-y: auto;
}

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

.modal-content {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius);
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-text);
  background: none;
  border: none;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--color-accent-1);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-primary);
  padding: 1.5rem;
  z-index: 1500;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  display: none;
}

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

.cookie-banner-content {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 68px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cookie-banner-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-accept {
  background-color: var(--color-accent-1);
  color: var(--color-white);
}

.cookie-accept:hover {
  background-color: var(--color-accent-2);
}

.cookie-reject {
  background-color: var(--color-primary);
  color: var(--color-text);
  border: 1px solid var(--color-accent-1);
}

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

.success-message {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-accent-1);
  color: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  z-index: 3000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.32s ease;
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 24px;
  }

  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 12px;
  }

  .container {
    padding: 0 24px;
  }

  .footer-content {
    padding: 0 24px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  section {
    padding: 60px 0;
  }

  .hero-content {
    padding: 60px 24px;
  }

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

  .section-grid,
  .text-overlay-image {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-grid.reverse {
    direction: ltr;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cookie-banner-content {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .modal-content {
    margin: 1rem;
    max-height: 90vh;
  }
}

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

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .logo {
    font-size: 20px;
  }

  .logo img {
    width: 32px;
    height: 32px;
  }

  nav ul {
    gap: 0.5rem;
  }

  nav a {
    font-size: 11px;
  }

  section {
    padding: 40px 0;
  }

  .hero-content {
    padding: 40px 24px;
  }

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