* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a24;
  background-color: #f6f4ef;
  line-height: 1.6;
}

a {
  color: #2b6b49;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background-color: #f0ede6;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  background-color: #dbe6dc;
  color: #2b4635;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 6vw 60px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 560px;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-text p {
  margin-bottom: 18px;
}

.hero-image {
  flex: 1 1 320px;
  background-color: #cdd8c7;
  padding: 18px;
  transform: translateY(12px);
}

.hero-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.primary-btn,
.ghost-btn {
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 6px;
}

.primary-btn {
  background-color: #2b6b49;
  color: #ffffff;
}

.ghost-btn {
  background-color: #f0ede6;
  color: #2b6b49;
  border: 1px solid #2b6b49;
}

.offset-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 60px 6vw;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1 1 280px;
}

.image-frame {
  flex: 1 1 280px;
  background-color: #e0e6d7;
  padding: 16px;
}

.image-frame img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.floating-card {
  background-color: #ffffff;
  padding: 26px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(31, 42, 36, 0.08);
  max-width: 520px;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.storyline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.storyline-marker {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #c2d5c4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-price {
  font-weight: 700;
  color: #1f2a24;
}

.form-section {
  padding: 70px 6vw;
  background-color: #e8eee4;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.form-note {
  flex: 1 1 260px;
}

.service-form {
  flex: 1 1 320px;
  background-color: #ffffff;
  padding: 22px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-form label {
  font-weight: 600;
}

.service-form input,
.service-form select,
.service-form textarea {
  padding: 10px;
  border: 1px solid #c9d3c3;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.testimonial-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 220px;
  background-color: #ffffff;
  padding: 16px;
  border-radius: 10px;
}

.cta-block {
  background-color: #2b6b49;
  color: #ffffff;
  padding: 26px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.cta-block a {
  color: #ffffff;
  text-decoration: underline;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: #ffffff;
  padding: 16px;
  border-radius: 10px;
}

.footer {
  margin-top: auto;
  background-color: #1f2a24;
  color: #f6f4ef;
  padding: 26px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #d9e3d2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background-color: #f59e0b;
  color: #1f2a24;
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f0ede6;
  padding: 16px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #c9d3c3;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.policy-content {
  padding: 50px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  background-color: #ffffff;
  padding: 18px;
  border-radius: 12px;
  flex: 1 1 240px;
}

.simple-hero {
  padding: 50px 6vw 30px;
}

.simple-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.split-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: stretch;
}

.panel {
  flex: 1 1 280px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
}

.panel img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 12px;
}
