* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1c1d1f;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1c1d1f;
  text-decoration: none;
}

button {
  border: none;
  background: #1c1d1f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
  font-size: 0.95rem;
  cursor: pointer;
}

.button-link {
  display: inline-block;
  background: #1c1d1f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
  font-size: 0.95rem;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #fff;
  padding: 28px 20px;
  border-right: 1px solid #e4ded7;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.25rem;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: #6b5f55;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 0;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 48px 80px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  background: #f1ebe4;
  border-radius: 28px;
  padding: 32px;
}

.hero-text {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  flex: 1 1 320px;
  background: #e7e1da;
  border-radius: 20px;
  overflow: hidden;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #6b5f55;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-title {
  font-size: 1.6rem;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.split > div {
  flex: 1 1 260px;
}

.background-panel {
  background: #efe7df;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.photo-panel {
  background-color: #e7dfd7;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  padding: 30px;
  color: #1c1d1f;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 16px;
}

.image-shell {
  background: #e7e1da;
  overflow: hidden;
}

.image-shell img {
  width: 100%;
  height: 160px;
}

.service-card-content {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: #2c554b;
}

.highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.highlight {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-frame {
  background: #e7e1da;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 220px;
}

.testimonial {
  background: #1c1d1f;
  color: #fff;
  padding: 24px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid label {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.form-grid select,
.form-grid input,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d9d2ca;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #5f5852;
}

.footer {
  margin-top: 40px;
  padding: 26px 0;
  border-top: 1px solid #e4ded7;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: #5f5852;
}

.footer a {
  color: #5f5852;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.muted {
  color: #6b5f55;
}

.inline-link {
  text-decoration: underline;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  align-items: center;
}

.table-row span {
  flex: 1 1 160px;
}

.legal-block {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notice {
  background: #f1ebe4;
  border-radius: 16px;
  padding: 16px;
  font-size: 0.9rem;
}

.secondary-image {
  background: #e7e1da;
  border-radius: 20px;
  overflow: hidden;
}

.secondary-image img {
  width: 100%;
  height: 260px;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e4ded7;
    flex-direction: column;
  }

  .main {
    padding: 32px 24px 80px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
