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

:root {
  --primary: #0a5f38;
  --secondary: #1a8c5a;
  --accent: #f4a259;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --gray: #6c757d;
  --border: #dee2e6;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: #fff;
}

.top-notice {
  background: var(--accent);
  color: var(--dark);
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

.hero-split {
  display: flex;
  min-height: 85vh;
  align-items: center;
}

.hero-left {
  flex: 1;
  padding: 80px 60px;
  background: var(--light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 95, 56, 0.3), transparent);
}

.hero-left h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--primary);
  font-weight: 800;
}

.hero-left p {
  font-size: 19px;
  margin-bottom: 35px;
  color: var(--gray);
  max-width: 520px;
}

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  border: 2px solid var(--primary);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

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

.section-split {
  display: flex;
  align-items: stretch;
}

.split-content {
  flex: 1;
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  position: relative;
}

.split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(10, 95, 56, 0.15);
}

.section-split:nth-child(even) {
  flex-direction: row-reverse;
}

.split-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3;
}

.split-content p {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.split-content ul {
  list-style: none;
  margin: 25px 0;
}

.split-content ul li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  color: var(--dark);
}

.split-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 80px 5%;
  background: var(--light);
}

.service-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  background: #fff;
  padding: 40px 30px;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary);
}

.service-card p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin: 20px 0;
}

.price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray);
}

.form-section {
  display: flex;
  background: #fff;
}

.form-left {
  flex: 1;
  background: var(--primary);
  color: #fff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-left h2 {
  font-size: 38px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.form-left p {
  font-size: 17px;
  opacity: 0.9;
  line-height: 1.7;
}

.form-right {
  flex: 1;
  padding: 80px 60px;
  background: var(--light);
}

.contact-form {
  max-width: 100%;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

footer {
  background: var(--dark);
  color: #fff;
  padding: 60px 5% 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 40px;
}

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

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

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

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

.footer-col a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

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

.footer-col p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 3px solid var(--primary);
  padding: 25px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  z-index: 1000;
}

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

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

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

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

.cookie-buttons button {
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 14px;
}

.accept-cookies {
  background: var(--primary);
  color: #fff;
}

.accept-cookies:hover {
  background: var(--secondary);
}

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

.reject-cookies:hover {
  background: var(--primary);
  color: #fff;
}

.about-intro {
  padding: 80px 5%;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-intro h1 {
  font-size: 48px;
  margin-bottom: 25px;
  color: var(--primary);
}

.about-intro p {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.8;
}

.services-header {
  padding: 80px 5%;
  text-align: center;
  background: var(--light);
}

.services-header h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary);
}

.services-header p {
  font-size: 18px;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.contact-page {
  display: flex;
  min-height: 70vh;
}

.contact-info {
  flex: 1;
  background: var(--primary);
  color: #fff;
  padding: 80px 60px;
}

.contact-info h1 {
  font-size: 42px;
  margin-bottom: 30px;
}

.contact-info p {
  font-size: 17px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-item strong {
  font-size: 15px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-item span {
  font-size: 17px;
}

.contact-map {
  flex: 1;
  background: var(--light);
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 16px;
}

.thanks-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  background: var(--light);
}

.thanks-content {
  text-align: center;
  max-width: 600px;
}

.thanks-content h1 {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 25px;
}

.thanks-content p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 35px;
  line-height: 1.7;
}

.legal-page {
  padding: 80px 5%;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 42px;
  margin-bottom: 30px;
  color: var(--primary);
}

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

.legal-page h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--dark);
}

.legal-page p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-page ul {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-page ul li {
  margin-bottom: 10px;
  color: var(--gray);
  line-height: 1.7;
}

.disclaimer {
  background: #fff3cd;
  border-left: 4px solid var(--accent);
  padding: 20px 25px;
  margin: 40px 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
}

@media (max-width: 968px) {
  .hero-split,
  .section-split,
  .form-section,
  .contact-page {
    flex-direction: column;
  }

  .hero-left,
  .split-content,
  .form-left,
  .form-right,
  .contact-info,
  .contact-map {
    padding: 50px 30px;
  }

  .hero-left h1 {
    font-size: 38px;
  }

  .split-content h2 {
    font-size: 32px;
  }

  .nav-links {
    gap: 20px;
    font-size: 14px;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

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