* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d2429;
  background-color: #f5f4f1;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.split-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 28px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  background-color: #1d2429;
  color: #f5f4f1;
  padding: 8px 12px;
  font-size: 12px;
  border-radius: 20px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-content {
  flex: 1 1 380px;
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content p {
  margin-bottom: 20px;
  color: #3e4a52;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background-color: #d6d1c8;
}

.hero-media img {
  height: 100%;
}

.hero-tag {
  position: absolute;
  bottom: 20px;
  left: -10px;
  background: #f3b45b;
  padding: 10px 18px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 600;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 24px;
  border: 1px solid #1d2429;
  background: #1d2429;
  color: #f5f4f1;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #1d2429;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid #1d2429;
  padding-bottom: 2px;
}

.layer-section {
  margin-top: 64px;
  position: relative;
}

.bg-section {
  margin-top: 70px;
  padding: 60px 24px;
  border-radius: 28px;
  background-image: url("https://images.unsplash.com/photo-1481277542470-605612bd2d61?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #f5f4f1;
  overflow: hidden;
}

.bg-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 36, 41, 0.55);
}

.bg-section .bg-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.layer-section .panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
  max-width: 620px;
}

.offset-right {
  margin-left: auto;
  margin-right: 0;
  transform: translateY(-18px);
}

.offset-left {
  margin-left: 0;
  margin-right: auto;
  transform: translateX(18px);
}

.image-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.image-card {
  flex: 1 1 220px;
  background: #c8c2b8;
  border-radius: 16px;
  overflow: hidden;
}

.image-card img {
  height: 180px;
}

.services {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.06);
}

.service-info {
  flex: 1 1 340px;
  padding: 24px;
}

.service-info h3 {
  margin-bottom: 10px;
}

.service-price {
  font-weight: 700;
  margin-top: 12px;
  color: #2e5f57;
}

.service-media {
  flex: 1 1 280px;
  min-height: 220px;
  background-color: #c2cbd0;
}

.service-media img {
  height: 100%;
}

.form-wrap {
  margin-top: 60px;
  background: #ffffff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.05);
  max-width: 720px;
}

.form-wrap h2 {
  margin-bottom: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c9c9;
  font-size: 14px;
}

.two-col {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 240px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1d2429;
  color: #f5f4f1;
  padding: 12px 18px;
  border-radius: 30px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 5;
}

.sticky-cta a {
  background: #f3b45b;
  color: #1d2429;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 600;
}

.asym-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 50px;
}

.asym-grid .card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.05);
}

.card img {
  height: 150px;
  border-radius: 14px;
  margin-bottom: 14px;
  background-color: #d6d1c8;
}

.footer {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid #cfcac1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  font-size: 12px;
  color: #4a565e;
  max-width: 520px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 16px;
  border: 1px solid #1d2429;
  background: #1d2429;
  color: #f5f4f1;
  cursor: pointer;
  font-size: 12px;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1d2429;
}

.page-hero {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero .text {
  flex: 1 1 340px;
}

.page-hero .media {
  flex: 1 1 300px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #c8c2b8;
}

.contact-block {
  margin-top: 32px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  max-width: 520px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05);
}

.legal-section {
  margin-top: 40px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05);
}

.legal-section h2 {
  margin-bottom: 12px;
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
