* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 24px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f7f4f0;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.9rem;
  color: #5a5750;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
  background: #ede4d8;
}

.hero {
  padding: 56px 6vw;
  background-color: #ded8cf;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f9f7f3;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}

.hero-inner {
  background: rgba(36, 34, 30, 0.6);
  padding: 32px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-inner h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 26px;
  background: #f2b255;
  color: #2c2419;
  font-weight: 600;
}

.btn.secondary {
  background: #f0ede7;
  color: #2c2419;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.section-bg {
  background-color: #dfe7e4;
  background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-panel {
  background: rgba(255, 255, 255, 0.92);
  padding: 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-image {
  height: 180px;
  background-color: #e7ded3;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #9c5a1a;
}

.inline-image {
  height: 320px;
  background-color: #e2e0dc;
  border-radius: 20px;
  overflow: hidden;
}

.pill-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #ece6dc;
}

.form-box {
  background: #fff7ec;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-box label {
  font-weight: 600;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9b7a3;
  background: #ffffff;
  font-size: 1rem;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1f2a2e;
  color: #f9f7f3;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 10;
}

.footer {
  padding: 40px 6vw;
  background: #1f2a2e;
  color: #f7f4f0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.legal {
  font-size: 0.9rem;
  color: #d6d0c8;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #f2b255;
  color: #2c2419;
}

.cookie-actions .reject {
  background: #e8e1d8;
  color: #2c2419;
}

.simple-hero {
  padding: 64px 6vw 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-wrap {
  padding: 24px 6vw 64px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-image {
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #e5ddd1;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 6vw;
  }

  .hero-inner h1 {
    font-size: 2rem;
  }
}
