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

:root {
  --primary: #2d5016;
  --primary-light: #4a7c2a;
  --primary-dark: #1a3009;
  --accent: #8fbc3f;
  --bg-light: #f8faf6;
  --bg-white: #ffffff;
  --text-dark: #1a1a1a;
  --text-gray: #5a5a5a;
  --border: #e0e8d9;
}

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

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

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

.header-top {
  background: var(--primary-dark);
  padding: 8px 0;
}

.ad-disclosure {
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  opacity: 0.9;
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

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

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

.hero-split {
  display: flex;
  min-height: 580px;
  background: var(--bg-light);
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 5rem;
}

.hero-left h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  font-weight: 800;
}

.hero-left p {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  max-width: 480px;
}

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

.hero-right::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45,80,22,0.1) 0%, transparent 100%);
}

.btn {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45,80,22,0.2);
}

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

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

.section {
  padding: 5rem 0;
}

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

.section-header {
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-gray);
  max-width: 680px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  flex: 1;
  min-width: 280px;
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background-color: var(--bg-light);
}

.service-content {
  padding: 1.8rem;
}

.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
}

.service-content p {
  color: var(--text-gray);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.service-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.split-section {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.split-left,
.split-right {
  flex: 1;
}

.split-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  background-color: var(--bg-light);
}

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
}

.feature-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-gray);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
}

.form-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 5rem 0;
  color: white;
}

.form-container {
  max-width: 680px;
  margin: 0 auto;
}

.form-section h2 {
  color: white;
  text-align: center;
  margin-bottom: 0.8rem;
}

.form-section p {
  text-align: center;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  font-size: 1rem;
  background: rgba(255,255,255,0.95);
  color: var(--text-dark);
}

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

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.form-submit .btn {
  min-width: 240px;
  background: var(--accent);
}

.form-submit .btn:hover {
  background: #a5d451;
}

.contact-info-grid {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info-item {
  flex: 1;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.contact-info-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.contact-info-item p {
  color: var(--text-gray);
  line-height: 1.8;
}

footer {
  background: var(--primary-dark);
  color: white;
  padding: 3.5rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-col {
  flex: 1;
}

.footer-col h4 {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  color: var(--accent);
}

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

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.disclaimer {
  background: #fffbf0;
  border-left: 4px solid #f0ad4e;
  padding: 1.5rem;
  margin: 3rem 0;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 1.2rem;
  color: var(--text-gray);
}

.legal-content ul {
  padding-left: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: white;
  padding: 1.5rem;
  z-index: 1000;
  display: none;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

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

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

.cookie-buttons .btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

.thanks-container {
  max-width: 600px;
  margin: 5rem auto;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-light);
  border-radius: 8px;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.thanks-container h1 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.thanks-container p {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

@media (max-width: 968px) {
  .hero-split {
    flex-direction: column;
  }

  .hero-left {
    padding: 3rem 2rem;
  }

  .hero-right {
    min-height: 350px;
  }

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

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

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

  .footer-content {
    flex-direction: column;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}
