* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2328;
  background: #f7f6f2;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #5b5f64;
  border-left: 2px solid #c9c2b5;
  padding-left: 12px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 32px 0 56px;
}

.hero-text,
.hero-media {
  flex: 1;
  min-width: 0;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
}

.hero-text p {
  margin: 0 0 20px;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-media {
  background: #d8d1c4;
  border-radius: 18px;
  overflow: hidden;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 48px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  min-width: 0;
}

.panel h2 {
  margin-top: 0;
  font-size: 2rem;
}

.note {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button {
  background: #2c2f32;
  color: #f6f3ed;
}

.button-secondary {
  background: #f1ebe0;
  color: #2c2f32;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.service-card .card-body {
  padding: 18px;
}

.service-card .price {
  font-weight: 700;
  margin-top: 8px;
}

.strip {
  background: #1f2328;
  color: #f4efe7;
  padding: 46px 0;
  margin: 24px 0;
}

.strip .strip-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.strip .strip-block {
  flex: 1;
}

.bg-feature {
  background-image: url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-feature .note {
  background: rgba(20, 20, 20, 0.72);
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid #cfc9bc;
  border-radius: 12px;
  font-size: 1rem;
  background: #faf8f4;
}

.footer {
  padding: 48px 0 80px;
  font-size: 0.95rem;
  color: #4a4f55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  padding: 8px;
  z-index: 10;
}

.sticky-cta button {
  background: #f0b24c;
  color: #1f2328;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  padding: 18px;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.visual-panel {
  background: #d8d1c4;
  border-radius: 18px;
  overflow: hidden;
}

.image-block {
  background: #cfc7bb;
  border-radius: 18px;
  overflow: hidden;
}

.notice {
  font-size: 0.92rem;
  color: #5d6166;
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-line {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.service-line span {
  font-weight: 700;
}

@media (max-width: 960px) {
  .hero,
  .split,
  .strip .strip-inner {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
