* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #10231b;
  background: #f6f6f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #0f2c22;
  color: #f4f5f0;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav a {
  color: #f4f5f0;
  font-size: 15px;
  padding: 6px 0;
}

.nav a:hover {
  color: #aad4a3;
}

.side-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  background: #7fbf86;
  color: #0b1c15;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #f4f5f0;
  border: 1px solid #cbe7c4;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 32px 40px 60px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 44, 34, 0.08);
}

.section.dark {
  background: #103128;
  color: #f6f6f2;
}

.section.soft {
  background: #e7efe9;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split > div {
  flex: 1 1 260px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 30, 22, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  gap: 18px;
}

.hero-overlay h1 {
  font-size: 38px;
  color: #f6f6f2;
  max-width: 520px;
}

.hero-overlay p {
  color: #d2e5d0;
  max-width: 500px;
}

.tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #d6e4da;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  height: 140px;
  object-fit: cover;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #1a4a39;
}

.inline-link {
  font-weight: 600;
  color: #1d6a4e;
  text-decoration: underline;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  background: #f6f6f2;
  border-radius: 16px;
  padding: 16px;
}

.service-row span {
  flex: 1 1 240px;
}

.form-card {
  background: #0f2c22;
  color: #f4f5f0;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-size: 14px;
  opacity: 0.9;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: none;
  margin-top: 6px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-end;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 18px;
  border: 1px solid #cfe2d5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 20px 0 10px;
  font-size: 14px;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0f2c22;
  color: #f4f5f0;
  padding: 18px;
  border-radius: 14px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .content {
    padding: 24px;
  }

  .sticky-cta {
    position: static;
    align-self: stretch;
  }
}
