* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ef;
  --ink: #1e1b18;
  --muted: #5f5a54;
  --accent: #c62f2f;
  --accent-dark: #8f1f1f;
  --soft: #e8e1d9;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: underline;
}

header {
  padding: 28px 6vw 10px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 6vw 80px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  min-width: 260px;
}

.panel h1,
.panel h2,
.panel h3 {
  margin-top: 0;
}

.hero {
  padding-top: 10px;
}

.hero-tag {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
}

.cta-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.cta-text {
  background: transparent;
  border: none;
  color: var(--accent-dark);
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-weight: 600;
}

.img-frame {
  background: #d7d0c7;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
}

.section-bg {
  background-color: #e4ded6;
  padding: 40px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
}

.section-bg.one {
  background-image: url("https://images.unsplash.com/photo-1476480862126-209bfaa8edc8?w=1400&q=80");
}

.section-bg.two {
  background-image: url("https://images.unsplash.com/photo-1460353581641-37baddab0fa2?w=1400&q=80");
}

.section-bg.three {
  background-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1400&q=80");
}

.section-bg.four {
  background-image: url("https://images.unsplash.com/photo-1471295253337-3ceaaedca402?w=1400&q=80");
}

.section-bg.five {
  background-image: url("https://images.unsplash.com/photo-1491553895911-0055eca6402d?w=1400&q=80");
}

.section-bg.six {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.section-bg.seven {
  background-image: url("https://images.pexels.com/photos/13993428/pexels-photo-13993428.jpeg");
}

.section-bg.eight {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  background: var(--card);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.service-item img {
  width: 90px;
  height: 90px;
  border-radius: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.trust-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-card {
  flex: 1;
  min-width: 220px;
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #c7beb3;
  font-size: 15px;
  font-family: inherit;
}

.form-status {
  color: var(--accent-dark);
  font-weight: 600;
}

footer {
  padding: 40px 6vw 60px;
  background: #f1ece6;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  background: #fff;
  color: var(--accent);
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #eee5dc;
  color: var(--ink);
}

.page-hero {
  background-color: #e8e1d9;
  padding: 30px;
  border-radius: 20px;
}

.page-hero img {
  border-radius: 16px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }

  .cookie-banner {
    left: 10px;
    bottom: 80px;
  }
}
