* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1b1b1f;
  background: #f7f6f3;
  line-height: 1.6;
}

a {
  color: #2c5a4c;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #efece6;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.3px;
}

.ad-label {
  background: #1b1b1f;
  color: #fff;
  padding: 8px 10px;
  font-size: 12px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 0;
}

.content {
  flex: 1;
  padding: 32px 48px 120px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 54px 48px;
  border-radius: 28px;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero.hero-alt-one {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
}

.hero.hero-alt-two {
  background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 26, 30, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  min-width: 260px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.soft-block {
  background: #f1efe9;
  border-radius: 24px;
  padding: 28px;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-bg.alt-services {
  background-image: url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?w=1400&q=80");
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 23, 26, 0.55);
}

.section-bg .section-bg-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 230px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.img-frame {
  background: #d9d4cb;
  width: 100%;
  overflow: hidden;
}

.media-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.cta-button,
.ghost-button {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.cta-button {
  background: #2c5a4c;
  color: #fff;
}

.ghost-button {
  background: #f1efe9;
  color: #1b1b1f;
}

.inline-cta {
  font-weight: 600;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border-radius: 14px;
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price {
  font-weight: 700;
  color: #2c5a4c;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid label {
  font-weight: 600;
  font-size: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6d1c8;
  font-family: inherit;
}

.form-status {
  font-size: 13px;
  color: #9c2f2f;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #ddd7cd;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 24px;
  background: #1b1b1f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  background: #f9d97a;
  color: #1b1b1f;
  border-radius: 999px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 360px;
  z-index: 12;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.page-title {
  font-size: 34px;
  margin: 0;
}

.muted {
  color: #5a5651;
}

.notice {
  background: #fff6df;
  border-radius: 16px;
  padding: 16px;
  font-size: 14px;
}
