* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #16302a;
  background-color: #f5f8f6;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

header {
  padding: 24px 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: #eef5f1;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 16px;
  background: #e2efe8;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px 7vw 24px;
  align-items: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 35%;
  height: 60%;
  background: #d8e9e0;
  z-index: 0;
}

.hero-content {
  flex: 1 1 320px;
  min-width: 280px;
  z-index: 1;
}

.hero-image {
  flex: 1 1 340px;
  min-width: 280px;
  background-color: #cfe3d6;
  padding: 16px;
  border-radius: 18px;
  z-index: 1;
  margin-left: auto;
}

.hero-image img {
  width: 100%;
  height: 380px;
  border-radius: 14px;
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.primary-button {
  background: #2f6f5e;
  color: #ffffff;
}

.secondary-button {
  background: #f1f6f3;
  border: 1px solid #2f6f5e;
  color: #2f6f5e;
}

.ghost-button {
  background: transparent;
  border: 1px dashed #2f6f5e;
  color: #2f6f5e;
}

.section {
  padding: 36px 7vw;
  position: relative;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #e6f0ea;
}

.section.bg-image {
  background-color: #1b3b32;
  background-image: url("https://images.pexels.com/photos/9822430/pexels-photo-9822430.jpeg");
  background-size: cover;
  background-position: center;
  color: #f4f9f6;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-image {
  flex: 1 1 320px;
  background-color: #c7ddd1;
  padding: 12px;
  border-radius: 20px;
}

.asym-image img {
  width: 100%;
  height: 320px;
  border-radius: 16px;
}

.offset-card {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(22, 48, 42, 0.08);
  transform: translateY(-18px);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 24px rgba(22, 48, 42, 0.08);
}

.service-card img {
  width: 100%;
  height: 160px;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1f5a4e;
}

.testimonial-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial {
  flex: 1 1 220px;
  background: #f7faf8;
  padding: 18px;
  border-radius: 16px;
  border-left: 4px solid #2f6f5e;
}

.section.bg-image .testimonial {
  background: rgba(255, 255, 255, 0.14);
  color: #f4f9f6;
  border-left-color: #bfe4d2;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

form {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(22, 48, 42, 0.08);
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c8d8d1;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.inline-cta {
  color: #2f6f5e;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1f5a4e;
  color: #ffffff;
  font-weight: 600;
  z-index: 100;
  box-shadow: 0 12px 24px rgba(22, 48, 42, 0.18);
}

footer {
  padding: 32px 7vw;
  background: #133029;
  color: #f2f6f4;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.82rem;
  max-width: 420px;
  color: #cfe3d8;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(22, 48, 42, 0.16);
  z-index: 200;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.simple-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  padding: 36px 7vw;
  background: #e9f3ed;
}

.simple-hero img {
  width: 100%;
  height: 280px;
  border-radius: 18px;
}

.content-block {
  max-width: 720px;
}

.list-block {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.list-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(22, 48, 42, 0.08);
}

.references {
  font-size: 0.85rem;
  color: #cfe3d8;
}

@media (max-width: 720px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
