* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: #1a1a1a;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 100px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 28px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a,
.nav span {
  font-size: 0.95rem;
}

.ad-label {
  background: #e8dfd6;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin: 10px 0 60px;
}

.hero-text {
  flex: 1;
  background: #ffffff;
  padding: 40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.hero-media {
  flex: 1;
  min-height: 360px;
  background: #d8d1c8;
  margin-top: -30px;
  position: relative;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #1f4037;
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.cta-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 6px;
  border: none;
  background: #1f4037;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.ghost-button {
  background: #ffffff;
  color: #1f4037;
  border: 1px solid #1f4037;
}

.section {
  margin: 70px 0;
  position: relative;
}

.section-split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.section-card {
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.media-box {
  flex: 1;
  min-height: 280px;
  background: #d5c9bd;
}

.offset-media {
  margin-top: -40px;
}

.highlight {
  background: #efe7df;
  padding: 36px;
  margin-top: -20px;
}

.cards-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
}

.card-media {
  height: 180px;
  background: #cfc8bf;
  margin-bottom: 16px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-info {
  flex: 1;
  background: #ffffff;
  padding: 28px;
}

.service-media {
  flex: 1;
  min-height: 260px;
  background: #d8d1c8;
}

.price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f4037;
}

.form-section {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.form-panel {
  flex: 1.2;
  background: #ffffff;
  padding: 32px;
}

.form-aside {
  flex: 0.8;
  background: #efe7df;
  padding: 28px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #c8c2bb;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.testimonial {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #ffffff;
  padding: 22px;
  margin-bottom: 14px;
}

.testimonial-media {
  width: 120px;
  height: 120px;
  background: #d1c7bc;
  flex-shrink: 0;
}

.footer {
  background: #1f4037;
  color: #fff;
  padding: 36px 28px 60px;
}

.footer a {
  color: #fff;
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.9rem;
  margin-top: 18px;
  color: #e7dfd7;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  max-width: 360px;
  z-index: 999;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #1f4037;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 998;
}

.simple-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px 100px;
}

.legal-card {
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
  margin-bottom: 24px;
}

.contact-panel {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  flex: 1;
  background: #ffffff;
  padding: 28px;
}

.contact-media {
  flex: 1;
  min-height: 260px;
  background: #d8d1c8;
}

@media (max-width: 980px) {
  .hero,
  .section-split,
  .form-section,
  .service-row,
  .contact-panel {
    flex-direction: column;
  }

  .hero-media,
  .media-box,
  .service-media,
  .contact-media {
    margin-top: 0;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
