* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1b1b1b;
  background: #f6f5f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 0;
}

.ad-label {
  font-size: 0.9rem;
  color: #4b4b4b;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 1.7rem;
  font-weight: 700;
}

.brand-tag {
  font-size: 0.95rem;
  color: #505050;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
  background: #efece4;
}

.hero {
  margin: 24px 6vw 0;
  background-color: #e4ded1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 28px;
  overflow: hidden;
}

.hero-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: 2.3rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #1b1b1b;
  color: #fff;
  border: none;
  border-radius: 26px;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1b1b1b;
  color: #1b1b1b;
}

.hero-media {
  position: relative;
  min-height: 260px;
  background-color: #d7d0c1;
}

.hero-media img {
  height: 100%;
}

.section {
  margin: 44px 6vw 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split > * {
  flex: 1 1 280px;
}

.offset-card {
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  margin-top: -40px;
}

.img-frame {
  background-color: #d9d9d9;
  border-radius: 22px;
  overflow: hidden;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .price {
  font-weight: 700;
  color: #1a4d2e;
}

.cta-strip {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  background: #1b1b1b;
  color: #fff;
  padding: 20px;
  border-radius: 22px;
}

.cta-strip a {
  color: #fff;
  text-decoration: underline;
}

.form-wrap {
  background: #fff;
  padding: 26px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border: 1px solid #bdb7ab;
  border-radius: 12px;
  font-size: 0.95rem;
}

.notice {
  font-size: 0.9rem;
  color: #4c4c4c;
}

.testimonial {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.testimonial .img-frame {
  flex: 0 0 160px;
}

.footer {
  margin-top: 50px;
  background: #151515;
  color: #f1f1f1;
  padding: 32px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer small {
  color: #cfcfcf;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 24px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
  z-index: 20;
}

.sticky-cta button {
  padding: 8px 12px;
  border-radius: 18px;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bg-process {
  background-image: url("https://images.pexels.com/photos/29965631/pexels-photo-29965631.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-about {
  background-image: url("https://images.pexels.com/photos/6870311/pexels-photo-6870311.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-services {
  background-image: url("https://images.pexels.com/photos/8985603/pexels-photo-8985603.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-contact {
  background-image: url("https://images.pexels.com/photos/6109512/pexels-photo-6109512.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-privacy {
  background-image: url("https://images.pexels.com/photos/3807695/pexels-photo-3807695.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-gdpr {
  background-image: url("https://images.pexels.com/photos/29965631/pexels-photo-29965631.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-cookies {
  background-image: url("https://images.pexels.com/photos/5640639/pexels-photo-5640639.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-terms {
  background-image: url("https://images.pexels.com/photos/33262773/pexels-photo-33262773.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-thanks {
  background-image: url("https://images.pexels.com/photos/8985456/pexels-photo-8985456.jpeg");
  background-size: cover;
  background-position: center;
}

.page-hero {
  margin: 24px 6vw 0;
  min-height: 220px;
  border-radius: 26px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fff;
  background-color: #2b2b2b;
}

.page-hero h1 {
  font-size: 2rem;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 720px) {
  .hero {
    margin: 18px 5vw 0;
  }

  .section {
    margin: 36px 5vw 0;
  }

  .offset-card {
    margin-top: 0;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
