* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: #f0ece6;
  border-bottom: 1px solid #ded7ce;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  color: #5f564b;
  padding: 6px 10px;
  border: 1px solid #cfc6bc;
  border-radius: 20px;
  background: #faf8f5;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  padding: 4px 6px;
  border-bottom: 1px solid transparent;
}

.section {
  padding: 64px 40px;
}

.section.alt {
  background: #ffffff;
}

.section.dense {
  padding: 40px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  max-width: 520px;
}

.split .visual {
  flex: 1 1 320px;
  max-width: 560px;
}

.visual-box {
  background: #dcd4c9;
  border-radius: 16px;
  overflow: hidden;
}

.visual-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  border: none;
  background: #2b2a29;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 28px;
  font-size: 14px;
  cursor: pointer;
}

.btn.light {
  background: #e8e2da;
  color: #2b2a29;
  border: 1px solid #c8bfb3;
}

.cta-inline {
  color: #2b2a29;
  border-bottom: 1px solid #2b2a29;
  padding-bottom: 2px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e6dfd6;
  display: flex;
  flex-direction: column;
}

.service-card .card-media {
  background: #d8d1c7;
}

.service-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #2b2a29;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #e3dbd1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfc6bc;
  font-size: 14px;
  font-family: inherit;
}

.note {
  font-size: 13px;
  color: #5f564b;
}

.two-col {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 260px;
}

.footer {
  padding: 40px;
  background: #1e1e1e;
  color: #f5f2ee;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f5f2ee;
  border-bottom: 1px solid #f5f2ee;
  padding-bottom: 2px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #2b2a29;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 14px;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e3dbd1;
  border-radius: 14px;
  padding: 16px;
  display: none;
  z-index: 6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.sidebar-layout {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.sidebar {
  flex: 0 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e6dfd6;
}

.content {
  flex: 1 1 400px;
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

  .sticky-cta {
    position: static;
    margin: 20px 40px 0;
    text-align: center;
  }
}
