* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f4f1;
  --ink: #1f2428;
  --muted: #5b656f;
  --card: #ffffff;
  --accent: #2a6f5a;
  --accent-soft: #d8ebe4;
  --sand: #efe7db;
  --shadow: 0 18px 40px rgba(20, 22, 25, 0.08);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background-color: #e6ece8;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 28px 0 12px;
}

.nav-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
}

.ad-label {
  font-size: 12px;
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.hero {
  margin-top: 18px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  flex: 1 1 280px;
}

.card--image {
  padding: 0;
  overflow: hidden;
  background-color: #dfe9e4;
}

.bg-1 {
  background-color: #d8e6e0;
}

.bg-2 {
  background-color: #e6e0d6;
}

.bg-3 {
  background-color: #dbe6dd;
}

.bg-4 {
  background-color: #e1e3da;
}

.bg-5 {
  background-color: #dfe7e1;
}

.bg-6 {
  background-color: #e4e8de;
}

.card--image img {
  height: 100%;
  min-height: 280px;
}

.section {
  padding: 48px 0;
}

.section--accent {
  background: var(--accent-soft);
}

.section--sand {
  background: var(--sand);
}

.section-title {
  font-size: 28px;
  margin-bottom: 14px;
}

.muted {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn--light {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid #ffffff;
}

.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.service-card img {
  border-radius: 12px;
  height: 160px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6d3;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  box-shadow: var(--shadow);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 10px 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e1e6e3;
  font-size: 13px;
}

footer {
  padding: 36px 0;
  background: #1f2428;
  color: #f2f5f3;
}

footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 12px;
  color: #c9d2cd;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  color: var(--ink);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 340px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.page-hero {
  margin-top: 24px;
}

.info-card {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.note {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #e5ebe7;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
