* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a24;
  background: #f7f5f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1c5b3a;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 6vw 14px;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.9rem;
  color: #5a6c60;
  padding: 6px 10px;
  border: 1px solid #c3cbbf;
  border-radius: 999px;
  background: #eef1ea;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 6vw 42px;
  position: relative;
}

.hero-inner {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-media {
  flex: 1 1 320px;
  background: #dce6da;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1c5b3a;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: #e6efe6;
  color: #1c5b3a;
  border: 1px solid #b9c7bb;
}

.section {
  padding: 42px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.offset-left {
  flex: 1 1 280px;
  background: #eef1ea;
  padding: 24px;
  border-radius: 18px;
  margin-top: 20px;
}

.offset-right {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
}

.service-image {
  flex: 0 0 140px;
  background: #d9e2d5;
  border-radius: 14px;
  overflow: hidden;
}

.service-info {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-weight: 700;
  color: #1c5b3a;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-step {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  background: #f0f2ed;
  padding: 16px;
  border-radius: 16px;
}

.step-index {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1c5b3a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8d1c8;
  background: #fafbf9;
  font-size: 1rem;
}

.aside-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #1c5b3a;
  color: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  flex-wrap: wrap;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 5;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: #1c241f;
  color: #e6eee6;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer small {
  color: #b9c3b8;
}

.cookies {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookies.show {
  display: flex;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.story-card {
  flex: 1 1 280px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
}

.image-card {
  flex: 1 1 280px;
  background: #dbe5db;
  border-radius: 18px;
  overflow: hidden;
}

.split-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.highlight-box {
  flex: 1 1 220px;
  background: #e6efe6;
  padding: 18px;
  border-radius: 16px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
}
