* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 10px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: #4c4c4c;
  max-width: 260px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 30px 6vw 50px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-image {
  flex: 1 1 320px;
  position: relative;
}

.image-frame {
  background: #dfe4e8;
  padding: 12px;
}

.image-frame img {
  width: 100%;
  height: 420px;
}

.accent-block {
  background: #f0e7dd;
  padding: 28px;
  margin-top: -48px;
  width: 85%;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 40px;
  background: #1b1b1b;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.secondary {
  background: #e2dad0;
  color: #1b1b1b;
}

.section {
  padding: 50px 6vw;
}

.section.alt {
  background: #ffffff;
}

.split {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 300px;
}

.split .visual {
  flex: 1 1 300px;
}

.visual .image-frame img {
  height: 320px;
}

.statement {
  background: #1b1b1b;
  color: #f7f1ea;
  padding: 40px;
  margin-top: 18px;
}

.statement strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  background: #f9f7f3;
  padding: 22px;
  flex: 1 1 260px;
  min-width: 240px;
}

.service-card img {
  width: 100%;
  height: 200px;
}

.price {
  font-weight: 700;
  margin-top: 8px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  min-width: 70px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial blockquote {
  margin: 0;
  padding: 16px 20px;
  background: #e8edf1;
}

.form-wrap {
  background: #ffffff;
  padding: 30px;
  max-width: 560px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9c9c9;
  font-size: 0.95rem;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin-left: auto;
  margin-right: 6vw;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  display: inline-flex;
}

.page-header {
  padding: 40px 6vw 10px;
}

.simple-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.simple-grid .card {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 20px;
}

.legal-section {
  max-width: 820px;
}

.footer {
  background: #151515;
  color: #e5ded7;
  padding: 30px 6vw 40px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  z-index: 999;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 240px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  background: #dfe4e8;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.muted {
  color: #4a4a4a;
}

.note-box {
  background: #efe8df;
  padding: 20px;
  margin-top: 20px;
}
