:root {
  --brand-green: #3B6855;
  --bg-light: #FAFAFA;
  --bg-white: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --border-light: #E8E8E8;
}

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

html, body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  line-height: 1.72;
  color: var(--text-primary);
  background-color: var(--bg-white);
}

body {
  padding-top: 72px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 36px;
  max-width: 1400px;
  margin: 0 auto;
}

.navbar-brand {
  text-decoration: none;
  color: var(--brand-green);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.5px;
}

.navbar-nav {
  display: flex;
  gap: 36px;
  list-style: none;
}

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

.navbar-nav a:hover {
  color: var(--brand-green);
}

.container-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
}

.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border-light);
}

.section:last-of-type {
  border-bottom: none;
  padding-bottom: 90px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--text-primary);
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
  color: var(--brand-green);
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 18px;
  color: var(--text-secondary);
  font-size: 16px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 90px 0;
}

.hero-content h1 {
  margin-bottom: 28px;
  line-height: 1.3;
}

.hero-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 7px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  margin-top: 48px;
}

.product-card {
  background: var(--bg-light);
  padding: 32px;
  border-radius: 7px;
  transition: box-shadow 0.38s ease;
}

.product-card:hover {
  box-shadow: 0 8px 20px rgba(59,104,85,0.12);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 7px;
  margin-bottom: 24px;
}

.product-card h4 {
  margin-bottom: 16px;
  color: var(--brand-green);
}

.product-card p {
  font-size: 14px;
  line-height: 1.7;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.two-column img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 7px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.cta {
  display: inline-block;
  color: var(--brand-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.38s ease;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

.cta:hover {
  color: var(--text-primary);
}

.cta-section {
  text-align: center;
  padding: 64px 0;
  background: var(--bg-light);
  border-radius: 7px;
  margin-top: 72px;
}

.cta-section h3 {
  margin-bottom: 32px;
}

footer {
  background: var(--text-primary);
  color: var(--bg-white);
  padding: 64px 36px 40px;
  margin-top: 90px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 48px;
}

.footer-section h4 {
  color: var(--bg-white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
  transition: color 0.38s ease;
}

.footer-section a:hover {
  color: var(--bg-white);
}

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

.disclaimer {
  background: rgba(59,104,85,0.05);
  border-left: 4px solid var(--brand-green);
  padding: 24px;
  margin: 48px 0;
  border-radius: 4px;
  font-size: 14px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(59,104,85,0.1);
}

.btn {
  background: var(--brand-green);
  color: white;
  padding: 12px 32px;
  border: none;
  border-radius: 7px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.38s ease;
}

.btn:hover {
  background: #2d5243;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-primary);
  color: white;
  padding: 20px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  z-index: 999;
  font-size: 14px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

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

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

.cookie-consent-buttons button {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.38s ease;
}

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

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

.cookie-decline {
  background: rgba(255,255,255,0.2);
  color: white;
}

.cookie-decline:hover {
  background: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  body {
    padding-top: 64px;
  }

  .navbar {
    height: 64px;
    padding: 0 24px;
  }

  .navbar-nav {
    gap: 24px;
    font-size: 13px;
  }

  .container-main {
    padding: 0 24px;
  }

  .section {
    padding: 48px 0;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

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