:root {
  --primary: #2d5a27;
  --primary-dark: #1e3d1a;
  --secondary: #7cb342;
  --accent: #f9a825;
  --text: #333333;
  --text-light: #666666;
  --bg-light: #f8f9f5;
  --bg-alt: #e8f0e4;
  --white: #ffffff;
  --border: #d4e4cf;
  --shadow: rgba(45, 90, 39, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--white);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

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

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.ad-disclosure {
  background: var(--bg-alt);
  padding: 8px 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo svg {
  width: 36px;
  height: 36px;
}

nav {
  display: flex;
  align-items: center;
}

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

nav a {
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin: 6px 0;
  transition: transform 0.3s ease;
}

.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background-color: var(--bg-alt);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 60px 0;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--primary-dark);
}

.btn-accent:hover {
  background: #e69100;
}

section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-light);
}

.section-green {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  flex: 1 1 340px;
  max-width: 380px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow);
}

.service-img {
  height: 200px;
  background-color: var(--bg-alt);
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 24px;
}

.service-content h3 {
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 15px;
}

.service-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.price-note {
  font-size: 13px;
  color: var(--text-light);
}

.about-section {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 32px;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.about-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--bg-alt);
  min-height: 360px;
}

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

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.feature-item {
  flex: 1 1 280px;
  display: flex;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.feature-text h4 {
  font-size: 18px;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.feature-text p {
  font-size: 14px;
  color: var(--text-light);
}

.testimonials {
  background: var(--primary-dark);
  color: var(--white);
}

.testimonials .section-header h2 {
  color: var(--white);
}

.testimonials .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 320px;
  max-width: 400px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.author-info strong {
  display: block;
  font-size: 15px;
}

.author-info span {
  font-size: 13px;
  opacity: 0.8;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 28px;
  opacity: 0.9;
}

.form-section {
  background: var(--bg-light);
}

.form-container {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.15);
}

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

.form-submit {
  text-align: center;
}

.form-submit .btn {
  min-width: 200px;
}

.contact-grid {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1 1 320px;
}

.contact-info h3 {
  font-size: 24px;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.contact-details h4 {
  font-size: 16px;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.contact-details p {
  color: var(--text-light);
  font-size: 15px;
}

.contact-map {
  flex: 1 1 400px;
  min-height: 320px;
  background: var(--bg-alt);
  border-radius: 12px;
  overflow: hidden;
}

footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 24px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

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

.disclaimer {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 8px;
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  color: var(--text);
}

.cookie-text a {
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background: var(--primary-dark);
}

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

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

.page-header {
  background: var(--bg-alt);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 40px;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 18px;
  color: var(--text-light);
}

.content-section {
  padding: 60px 0;
}

.content-section h2 {
  font-size: 28px;
  color: var(--primary-dark);
  margin-bottom: 20px;
  margin-top: 40px;
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.content-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.content-section ul li {
  margin-bottom: 8px;
  color: var(--text-light);
}

.thanks-container {
  text-align: center;
  padding: 80px 24px;
  max-width: 600px;
  margin: 0 auto;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thanks-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.thanks-container h1 {
  font-size: 36px;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.thanks-container p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.services-full {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.service-full-item {
  display: flex;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.service-full-item:nth-child(even) {
  flex-direction: row-reverse;
}

.service-full-image {
  flex: 0 0 40%;
  min-height: 280px;
  background-color: var(--bg-alt);
}

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

.service-full-content {
  flex: 1;
  padding: 32px;
}

.service-full-content h3 {
  font-size: 26px;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.service-full-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-full-content .price {
  font-size: 28px;
  margin-bottom: 20px;
}

.team-section {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
}

.team-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--bg-alt);
  margin: 0 auto 20px;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h4 {
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.team-member p {
  color: var(--text-light);
  font-size: 15px;
}

@media (max-width: 968px) {
  .hero h1 {
    font-size: 36px;
  }

  .about-section {
    flex-direction: column;
  }

  .about-image {
    min-height: 280px;
  }

  .service-full-item,
  .service-full-item:nth-child(even) {
    flex-direction: column;
  }

  .service-full-image {
    flex: none;
    width: 100%;
    min-height: 220px;
  }

  .contact-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  nav.active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 4px 20px var(--shadow);
    gap: 16px;
  }

  .hero {
    min-height: 420px;
  }

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

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

  section {
    padding: 48px 0;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}
