* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1e2420;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #1a5c3a;
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid #1a5c3a;
  outline-offset: 2px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 28px 6vw 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.ad-label {
  font-size: 0.9rem;
  color: #5a6a5e;
  padding: 6px 10px;
  border: 1px solid #c9d2c8;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 6vw 60px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a5c3a;
  color: #f7f6f2;
  border: none;
  border-radius: 30px;
  padding: 12px 22px;
  cursor: pointer;
}

.hero-cta:hover {
  background: #14462c;
}

.hero-visual {
  flex: 1 1 320px;
  position: relative;
  min-height: 360px;
  background: #d4e0d2;
  border-radius: 20px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.offset-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px 6vw;
  align-items: center;
}

.offset-section.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 300px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.offset-card h2,
.offset-card h3 {
  margin-bottom: 12px;
}

.offset-image {
  flex: 1 1 280px;
  background: #e0e6da;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.floating-note {
  background: #1a5c3a;
  color: #f7f6f2;
  padding: 18px 22px;
  border-radius: 14px;
  max-width: 320px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 20px 6vw 40px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.service-card .card-image {
  background: #d7e0d6;
  min-height: 160px;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card .price {
  font-weight: 700;
  color: #1a5c3a;
}

.cta-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.layered-banner {
  padding: 40px 6vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-bg {
  position: relative;
  overflow: hidden;
}

.section-bg .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.section-bg .bg-content {
  position: relative;
  z-index: 1;
}

.layered-banner .panel {
  background: #e9efe7;
  padding: 24px;
  border-radius: 16px;
  max-width: 520px;
}

.layered-banner .panel.alt {
  background: #ffffff;
  align-self: flex-end;
  max-width: 420px;
}

.testimonial-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 10px 6vw 40px;
}

.testimonial {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 30px 6vw 60px;
  align-items: flex-start;
}

.form-card {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cdd6cd;
  font-size: 1rem;
}

.form-card button {
  background: #1a5c3a;
  color: #f7f6f2;
  border: none;
  border-radius: 20px;
  padding: 12px 18px;
  cursor: pointer;
}

.form-card button:hover {
  background: #14462c;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1a5c3a;
  color: #f7f6f2;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 50;
}

.sticky-cta:hover {
  background: #14462c;
}

footer {
  margin-top: auto;
  padding: 30px 6vw 50px;
  background: #1f2a23;
  color: #eef2ec;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

footer a {
  color: #cfe6d6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.legal-note {
  font-size: 0.9rem;
  color: #c4d2c9;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #cdd6cd;
  padding: 18px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 20px;
  border: 1px solid #1a5c3a;
  padding: 8px 14px;
  background: #1a5c3a;
  color: #f7f6f2;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1a5c3a;
}

.subpage-hero {
  padding: 40px 6vw 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.subpage-hero .title-block {
  flex: 1 1 320px;
}

.subpage-hero .title-block h1 {
  font-size: clamp(2rem, 3.1vw, 3rem);
  margin-bottom: 12px;
}

.content-block {
  padding: 20px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-block .info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.info-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
}

.inline-image {
  background: #d9e4d8;
  border-radius: 16px;
  overflow: hidden;
}

.notice {
  background: #e7efe4;
  padding: 16px;
  border-radius: 14px;
}

@media (max-width: 760px) {
  .sticky-cta {
    right: 14px;
    left: 14px;
    justify-content: center;
  }
}
