* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background: #f5f2ed;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 260px;
  background: #e4e0d8;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  background: #2f3b30;
  color: #f7f4ef;
  padding: 8px 10px;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 6px;
  background: #f7f4ef;
}

.nav-links a:hover {
  background: #d9d2c8;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding: 48px 48px 30px;
  background: #fdfbf7;
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.hero-image {
  flex: 1 1 320px;
  background: #c8d0c7;
  border-radius: 16px;
  overflow: hidden;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #2f3b30;
  color: #fdfbf7;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #6b7a5b;
}

.btn:hover {
  background: #1f2a2e;
}

.content-block {
  padding: 34px 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-image {
  flex: 1 1 260px;
  border-radius: 14px;
  overflow: hidden;
  background: #c9d4c6;
}

.layered-section {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 0;
}

.layered-image {
  position: absolute;
  inset: 0;
  background: #c7d0c6;
}

.layered-image img {
  height: 100%;
}

.layered-content {
  position: relative;
  margin: 32px;
  max-width: 540px;
}

.highlight {
  background: #eef0e8;
  padding: 28px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: #fdfbf7;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e1dbd2;
}

.service-card figure {
  border-radius: 12px;
  overflow: hidden;
  background: #cbd4c8;
}

.service-card h3 {
  font-size: 1.1rem;
}

.service-price {
  font-weight: 700;
  color: #2f3b30;
}

.service-card button {
  align-self: flex-start;
}

.wide-service {
  background: #2f3b30;
  color: #fdfbf7;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-wrap {
  background: #f7f4ef;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e0d9cf;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9c2b8;
  font-size: 1rem;
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-note {
  font-size: 0.9rem;
  color: #4b564b;
}

.cta-inline {
  color: #2f3b30;
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  margin: 24px 48px 34px;
  background: #dce3d4;
  padding: 16px;
  border-radius: 999px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border: 1px solid #c9d4c1;
}

.sticky-cta a {
  background: #2f3b30;
  color: #fdfbf7;
  padding: 10px 16px;
  border-radius: 999px;
}

.sticky-cta a:hover {
  background: #1f2a2e;
}

.footer {
  background: #e4e0d8;
  padding: 26px 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 600;
}

.footer small {
  color: #3f4941;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #2f3b30;
  color: #fdfbf7;
  padding: 18px;
  border-radius: 14px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #fdfbf7;
  color: #2f3b30;
}

.cookie-reject {
  background: #b9c4b0;
  color: #1f2a2e;
}

.simple-page {
  padding: 48px;
  background: #fdfbf7;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.simple-page h1 {
  font-size: 2rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 200px;
  background: #eef0e8;
  padding: 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-list strong {
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sticky-cta {
    align-self: center;
  }
}
