* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: #2c5f5b;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 40px 6vw 90px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw;
  background: #efe9e1;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: #d6d0c8;
  padding: 6px 10px;
  border-radius: 999px;
  color: #2a2a2a;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1;
  background: #ded6cc;
  padding: 16px;
  transform: translateY(18px);
}

.hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.primary-btn,
.ghost-btn,
.cta-btn {
  border: none;
  background: #2c5f5b;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 24px;
  font-size: 0.95rem;
  cursor: pointer;
}

.ghost-btn {
  background: #e4dfd7;
  color: #2c5f5b;
}

.cta-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.asym-section {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
}

.asym-block {
  flex: 1;
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.offset {
  transform: translateY(-24px);
}

.media-card {
  flex: 1;
  background: #d8d1c7;
  padding: 16px;
  border-radius: 18px;
}

.media-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background: #d8d1c7;
}

.service-card.selected {
  outline: 3px solid #2c5f5b;
}

.pricing-tag {
  font-weight: 600;
  color: #2c5f5b;
}

.highlight-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 20px;
  background-color: #3a3a36;
  background: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80") center/cover no-repeat;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.highlight-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
}

.highlight-strip > * {
  position: relative;
  z-index: 1;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  background: #2c5f5b;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.form-section {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: flex-start;
}

form {
  flex: 1;
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c8c2bb;
  font-size: 0.95rem;
  background: #faf8f5;
}

.form-note {
  font-size: 0.85rem;
  color: #555555;
}

.side-panel {
  flex: 0.8;
  background: #efe9e1;
  padding: 24px;
  border-radius: 18px;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
}

.full-width-band {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px;
  border-radius: 22px;
  background-color: #30302c;
  background: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80") center/cover no-repeat;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.full-width-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.58);
}

.full-width-band > * {
  position: relative;
  z-index: 1;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 6vw 60px;
  background: #efe9e1;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #2c5f5b;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  gap: 10px;
  flex-direction: column;
  z-index: 30;
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
}

.policy-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
}

.legal-note {
  font-size: 0.85rem;
  color: #444444;
}

@media (max-width: 900px) {
  .hero,
  .asym-section,
  .form-section {
    flex-direction: column;
  }

  .hero-media img {
    height: 320px;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    justify-content: center;
  }
}
