* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d1d1b;
  background-color: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  background-color: #efe8dc;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.ad-disclosure {
  font-size: 12px;
  background-color: #f6d8c0;
  padding: 6px 10px;
  border-radius: 16px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.hero-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-title {
  font-size: 42px;
  line-height: 1.2;
}

.hero-media {
  flex: 0.9;
  background-color: #d9cbbb;
  padding: 16px;
  border-radius: 12px;
  transform: translateY(12px);
}

.hero-media img {
  border-radius: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #36554f;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn-light {
  background-color: #ffffff;
  color: #36554f;
  border: 1px solid #36554f;
}

.section {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  flex: 1;
  background-color: #d8d1c8;
  padding: 12px;
  border-radius: 12px;
}

.image-frame img {
  border-radius: 10px;
}

.offset-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  transform: translateX(18px);
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background-color: #fffaf3;
  padding: 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 10px;
}

.pricing-card {
  background-color: #f3ede4;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: #36554f;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bg-section {
  padding: 32px;
  border-radius: 16px;
  color: #1d1d1b;
  background-size: cover;
  background-position: center;
}

.bg-one {
  background-image: url("https://images.unsplash.com/photo-1514996937319-344454492b37?w=1400&q=80");
  background-color: #d3c4b4;
}

.bg-two {
  background-image: url("https://images.unsplash.com/photo-1511690743698-d9d85f2fbf38?w=1400&q=80");
  background-color: #c9c3b8;
}

.bg-overlay {
  background-color: rgba(255, 255, 255, 0.86);
  padding: 20px;
  border-radius: 12px;
  max-width: 520px;
}

.sticky-cta-wrap {
  display: flex;
  justify-content: flex-end;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  background-color: #f7e6d3;
  padding: 16px;
  border-radius: 12px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-size: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #c9c1b6;
  font-size: 14px;
  background-color: #ffffff;
}

.footer {
  background-color: #efe8dc;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #fffaf3;
  padding: 24px;
  border-radius: 14px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wide-title {
  font-size: 36px;
  line-height: 1.2;
}

@media (max-width: 960px) {
  .hero,
  .section,
  .section.reverse {
    flex-direction: column;
  }

  .hero-media {
    transform: none;
  }

  .offset-card {
    transform: none;
  }

  .sticky-cta-wrap {
    justify-content: flex-start;
  }
}
