* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: #1f2733;
  background: #f6f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.site-shell {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 260px;
  background: #111821;
  color: #f7f7f2;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-disclosure {
  font-size: 12px;
  color: #c8d1de;
  background: #1d2632;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-item a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  background: #18202b;
}

.nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-button {
  background: #f0c06a;
  color: #111821;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.main-content {
  flex: 1;
  padding: 36px 48px 72px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.section-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: #fefcf8;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 16px 30px rgba(17, 24, 33, 0.12);
}

.hero-media {
  border-radius: 18px;
  overflow: hidden;
  background: #d9d4c5;
}

.hero-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.inline-image {
  border-radius: 16px;
  overflow: hidden;
  background: #e2e0d8;
}

.inline-image img {
  width: 100%;
  height: 280px;
}

.highlight-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.highlight {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(17, 24, 33, 0.08);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 16px;
  box-shadow: 0 14px 28px rgba(17, 24, 33, 0.1);
}

.image-frame {
  background: #e6e2d8;
}

.image-frame img {
  width: 100%;
  height: 180px;
}

.service-body {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-weight: 700;
  color: #7a4e0f;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button {
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.primary-button {
  background: #111821;
  color: #fefcf8;
}

.secondary-button {
  background: #ede7dc;
  color: #111821;
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 32px rgba(17, 24, 33, 0.12);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d1d3d7;
  font-size: 15px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.info-strip {
  background: #1f2733;
  color: #f7f7f2;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.background-band {
  background: linear-gradient(120deg, #f1e6d6, #dfe6ef);
  border-radius: 24px;
  padding: 28px;
}

.bg-ledger {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d7dce6;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.bg-ledger .overlay {
  background: rgba(17, 24, 33, 0.65);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.floating-panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(17, 24, 33, 0.1);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #f0c06a;
  color: #111821;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(17, 24, 33, 0.2);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.sticky-cta button {
  border: none;
  background: #111821;
  color: #fefcf8;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.footer {
  border-top: 1px solid #d9d6cf;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(17, 24, 33, 0.15);
  max-width: 320px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #1f2733;
  color: #fefcf8;
}

.cookie-reject {
  background: #ede7dc;
  color: #111821;
}

.legal-block {
  background: #fefcf8;
  padding: 20px;
  border-radius: 16px;
}

.two-column {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 260px;
}

@media (max-width: 980px) {
  .site-shell {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
  }

  .main-content {
    padding: 28px 24px 72px;
  }

  .section-split,
  .section-split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 0 24px 24px;
  }
}
