* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1f1a;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #f0e9df;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid #e2d6c4;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.98rem;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.nav a:hover {
  border-color: #7a9060;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: #6e8f5a;
  color: #fff;
  text-align: center;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid #6e8f5a;
  color: #6e8f5a;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

section {
  padding: 56px 60px;
}

.section-muted {
  background: #ffffff;
}

.section-contrast {
  background: #e7efe1;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.78rem;
  color: #6c705f;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.inline-link {
  color: #6e8f5a;
  font-weight: 600;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 24px rgba(38, 38, 38, 0.08);
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #5b7a4d;
}

.form-shell {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 24px rgba(30, 31, 26, 0.1);
}

.form-shell label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d5cd;
  font-size: 1rem;
  background: #faf8f4;
}

.form-shell .service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-shell .service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f7f4ef;
  padding: 10px 12px;
  border-radius: 12px;
}

.form-shell .service-option input {
  width: auto;
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  min-width: 150px;
}

.stat h4 {
  font-size: 1.4rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer {
  padding: 28px 60px;
  background: #e9e3d8;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.footer a {
  color: #5d6a50;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1f3423;
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 60px;
  background: #eef2e7;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-grid .list-item {
  padding: 18px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  max-width: 520px;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  section {
    padding: 40px 24px;
  }

  .split {
    flex-direction: column;
  }

  .page-hero {
    padding: 40px 24px;
  }

  .footer {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
