* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2a2e;
  --muted: #5b6b72;
  --accent: #2b6f73;
  --accent-strong: #1c5356;
  --sand: #f4f1ed;
  --mist: #eef1f2;
  --sun: #f2c14e;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e5e8ea;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero {
  background: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80") center/cover no-repeat;
  padding: 80px 6vw;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn {
  background: var(--accent);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn:focus,
.btn-outline:focus {
  outline: 2px solid var(--sun);
  outline-offset: 2px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-strong);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 5;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1 1 320px;
}

.media {
  background: var(--mist);
  border-radius: 24px;
  overflow: hidden;
  min-height: 260px;
}

.soft-bg {
  background: var(--sand);
}

.trust-bg {
  background: url("https://images.unsplash.com/photo-1494526585095-c41746248156?w=1400&q=80") center/cover no-repeat;
  color: #ffffff;
  position: relative;
}

.trust-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.trust-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-row .media {
  flex: 1 1 220px;
  min-height: 200px;
}

.service-row .details {
  flex: 2 1 320px;
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
}

.cta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.text-link {
  text-decoration: underline;
  color: var(--accent);
}

.testimonial {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.testimonial .avatar {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--mist);
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd4d8;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  background: #11191c;
  color: #e7ecef;
  padding: 50px 6vw;
  margin-top: auto;
}

.footer a {
  color: #e7ecef;
  text-decoration: underline;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-columns > div {
  flex: 1 1 220px;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #cfd6da;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--sand);
  padding: 60px 6vw;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero .split {
  gap: 30px;
}

.legal-note {
  background: var(--mist);
  padding: 20px;
  border-radius: 18px;
}

.spacer {
  height: 16px;
}

@media (max-width: 820px) {
  .sticky-cta {
    position: static;
    margin: 0 6vw 20px;
    display: inline-flex;
  }

  .hero {
    padding: 60px 6vw;
  }
}
