.site-body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a33;
  background-color: #f6f4f1;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 28px 22px;
  background-color: #efe9e2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 14px;
  background-color: #1f2a33;
  color: #f6f4f1;
  line-height: 1.2;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav a {
  text-decoration: none;
  color: #1f2a33;
  font-weight: 600;
}

.nav a:focus {
  outline: 2px solid #1f2a33;
  outline-offset: 2px;
}

.sidebar-note {
  font-size: 13px;
  color: #4b5963;
  line-height: 1.5;
}

.content {
  flex: 1;
  padding: 40px 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-row {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.section-row.reverse {
  flex-direction: row-reverse;
}

.section-half {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-card {
  background-color: #ffffff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(18, 33, 43, 0.08);
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 0.9;
  background-color: #d9e0e6;
  border-radius: 26px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #4b5963;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-size: 38px;
  line-height: 1.15;
}

h2 {
  font-size: 28px;
  line-height: 1.2;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

p {
  margin: 0;
  line-height: 1.6;
  color: #36424b;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  background-color: #1f2a33;
  color: #f6f4f1;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.button.secondary {
  background-color: #f6f4f1;
  color: #1f2a33;
  border: 1px solid #1f2a33;
}

.inline-cta {
  text-decoration: underline;
  color: #1f2a33;
  font-weight: 600;
}

.highlight-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.highlight-item {
  padding: 14px 18px;
  background-color: #efe9e2;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
}

.image-frame {
  background-color: #d8d2ca;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  background-color: #1f2a33;
  color: #f6f4f1;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: flex-start;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-weight: 600;
  font-size: 14px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c8cdd2;
  font-family: inherit;
  font-size: 14px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row > div {
  flex: 1;
}

.footer {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: #4b5963;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #1f2a33;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background-color: #1f2a33;
  color: #f6f4f1;
  padding: 18px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .button {
  padding: 8px 14px;
  font-size: 13px;
}

.two-column {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.two-column .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-box {
  background-color: #efe9e2;
  padding: 22px;
  border-radius: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
}

.visual-bg {
  color: #f6f4f1;
  padding: 30px;
  border-radius: 22px;
  background-color: #1f2a33;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.visual-bg p {
  color: #f6f4f1;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: auto;
    flex-direction: column;
  }

  .content {
    padding: 28px 24px 56px;
  }

  .hero,
  .section-row,
  .two-column {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }
}
