* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1d1f;
  background-color: #f7f6f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  padding: 28px 6%;
  background-color: #f7f6f2;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 16px;
  background-color: #0f3c2e;
  color: #f7f6f2;
  font-size: 12px;
}

.split-section {
  display: flex;
  gap: 40px;
  padding: 64px 6%;
  align-items: center;
  justify-content: space-between;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  min-width: 260px;
}

.split-media {
  flex: 1;
  min-width: 260px;
}

.media-frame {
  border-radius: 18px;
  overflow: hidden;
  background-color: #d7e3e5;
  height: 100%;
  min-height: 280px;
}

.section-bg-one {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f6f2;
}

.section-bg-two {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f6f2;
}

.glass-panel {
  background-color: rgba(16, 22, 24, 0.6);
  padding: 28px;
  border-radius: 18px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #e7efe2;
  font-size: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #1a3c34;
  color: #f7f6f2;
  font-weight: 600;
}

.button.light {
  background-color: #f7f6f2;
  color: #1a3c34;
}

.link-inline {
  text-decoration: underline;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  align-items: center;
}

.service-card .card-image {
  width: 110px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f0d9c6;
  flex-shrink: 0;
}

.price-tag {
  font-weight: 700;
  color: #1a3c34;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-wrapper {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d4d8d4;
  font-size: 14px;
  width: 100%;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.two-column {
  display: flex;
  gap: 14px;
}

.footer {
  padding: 48px 6% 80px;
  background-color: #1b1d1f;
  color: #f7f6f2;
}

.footer-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer a {
  color: #f7f6f2;
}

.legal-note {
  margin-top: 18px;
  font-size: 13px;
  color: #d9dedc;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #c7e0d2;
  color: #1a3c34;
  padding: 12px 16px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 6%;
  background-color: #ffffff;
  border-top: 1px solid #d6dad7;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.hidden {
  display: none;
}

.contact-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
}

.plain-email {
  font-weight: 600;
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .two-column {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
