* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2428;
  background-color: #f6f4f0;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: #1f4f4c;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.topbar {
  padding: 26px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.topbar-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-tagline {
  font-size: 0.95rem;
  color: #4b5b65;
}

.ad-label {
  font-size: 0.85rem;
  background-color: #e3e0d8;
  padding: 8px 12px;
  border-radius: 20px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  padding: 6px 0;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 40px 0 30px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #3b4a54;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: #1f4f4c;
  color: #fefdfb;
  padding: 12px 22px;
  border-radius: 24px;
}

.btn-outline {
  border: 1px solid #1f4f4c;
  color: #1f4f4c;
  padding: 12px 22px;
  border-radius: 24px;
  background-color: transparent;
}

.img-frame {
  flex: 1;
  min-height: 320px;
  background-color: #d9d3c9;
  border-radius: 22px;
  overflow: hidden;
}

.section {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-title {
  font-size: 2rem;
  line-height: 1.2;
}

.section-note {
  color: #4d5a62;
}

.inline-link {
  color: #1f4f4c;
  font-weight: 600;
}

.services-preview {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 18px;
  background-color: #fefdfb;
  padding: 18px;
  border-radius: 18px;
  align-items: center;
}

.service-card .img-frame {
  min-height: 120px;
  max-width: 160px;
  flex: 0 0 160px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f4f4c;
}

.bg-feature {
  background-image: url("https://images.unsplash.com/photo-1486304873000-235643847519?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  overflow: hidden;
  margin: 20px 0;
}

.bg-feature .overlay {
  background-color: rgba(32, 36, 40, 0.58);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #fefdfb;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  background-color: #fefdfb;
  padding: 16px;
  border-radius: 14px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #fefdfb;
  padding: 18px;
  border-radius: 18px;
}

.form-section {
  background-color: #ede9e1;
  border-radius: 26px;
  padding: 36px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-size: 0.95rem;
  color: #3b4a54;
}

.form-grid select,
.form-grid input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #c7c1b6;
  font-size: 1rem;
  background-color: #ffffff;
}

.form-note {
  font-size: 0.9rem;
  color: #7b2c2c;
  min-height: 18px;
}

.footer {
  padding: 40px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
  color: #4c545b;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.plain-email {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #f3c96d;
  color: #2d2f31;
  padding: 12px 18px;
  border-radius: 24px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1f2428;
  color: #fefdfb;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.btn-light {
  background-color: #fefdfb;
  color: #1f2428;
  padding: 8px 16px;
  border-radius: 20px;
}

.btn-dark {
  background-color: #2f3a40;
  color: #fefdfb;
  padding: 8px 16px;
  border-radius: 20px;
}

.hero + .section {
  padding-top: 10px;
}

.page-hero {
  display: flex;
  gap: 30px;
  padding: 32px 0 24px;
  align-items: center;
}

.page-hero .img-frame {
  min-height: 240px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #fefdfb;
  padding: 18px;
  border-radius: 18px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-row {
  display: flex;
  gap: 20px;
  background-color: #fefdfb;
  padding: 18px;
  border-radius: 20px;
  align-items: center;
}

.service-row .img-frame {
  min-height: 140px;
  max-width: 200px;
  flex: 0 0 200px;
}

.thanks-box {
  background-color: #fefdfb;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 900px) {
  .hero,
  .section,
  .page-hero,
  .service-row,
  .service-card {
    flex-direction: column;
  }

  .service-card .img-frame,
  .service-row .img-frame {
    max-width: 100%;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
