:root {
  --primary-color: #3E7C48; /* Зеленый */
  --secondary-color: #2D5A35;
  --accent-color: #88B04B;
  --light-color: #F1F8E9;
  --dark-color: #1B2E1D;
  --background-color: #FCFDFB;
  --text-color: #37474F;
  --border-color: rgba(62, 124, 72, 0.1);
  --divider-color: rgba(45, 90, 53, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.08);
  --highlight-color: #FF8F00; /* Оранжевый акцент */
  --main-font: 'Ubuntu', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--main-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER & NAV (Exact Logic from Example) */
header {
  background: var(--primary-color);
  padding: 1rem 0;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.line { width: 25px; height: 3px; background: white; border-radius: 2px; }

.navigation ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.navigation a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 767px) {
  .hamburger { display: flex; }
  .navigation {
    display: none;
    width: 100%;
    background: var(--secondary-color);
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1.5rem;
  }
  #menu-toggle:checked ~ .navigation { display: block; }
  .navigation ul { flex-direction: column; gap: 15px; }
}

/* HERO (85vh) */
.hero {
  height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27, 46, 29, 0.8), rgba(27, 46, 29, 0.3));
}

.hero .container { position: relative; z-index: 2; }

/* IMAGE-TEXT BLOCKS */
.image-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}

.image-text-section.reverse { direction: rtl; }
.image-text-section.reverse > div { direction: ltr; }
.image-text-section img { width: 100%; border-radius: 40px 0; box-shadow: 15px 15px 0 var(--accent-color); }

@media (max-width: 767px) {
  .image-text-section { grid-template-columns: 1fr; gap: 2rem; }
  .image-text-section.reverse { direction: ltr; }
}

/* RANDOM CONTENT BLOCK (Full Width - Strip Style) */
.promo-strip {
  width: 100%;
  background: var(--dark-color);
  color: white;
  padding: 5rem 0;
}

/* FEATURE CARDS (4 items) */
.feature-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 0 40px 0 40px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

/* CONTACT (80% Desktop) */
#contact .contact-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 0 auto;
}

@media (min-width: 768px) { #contact .contact-inner { width: 80%; } }
@media (max-width: 767px) { #contact .contact-inner { width: 100%; } }

.contact-form {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  border-top: 5px solid var(--highlight-color);
}

/* FAQ (Open Style) */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
@media (max-width: 767px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item h3 { color: var(--primary-color); font-weight: 700; margin-bottom: 0.5rem; font-size: 1.25rem; }

/* FOOTER */
footer { background: var(--dark-color); color: white; padding: 4rem 0 2rem; }
footer img[alt="logo"] { filter: brightness(0) invert(1); }