* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1e1e;
  background-color: #f6f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1e1e1e;
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 20px 0;
  background: #f6f3ef;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f0d9c2;
  color: #623d1f;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.hero {
  padding: 40px 0 70px;
}

.split-section {
  display: flex;
  align-items: center;
  gap: 36px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
}

.split-image {
  flex: 1;
  background-color: #e8dccf;
  border-radius: 18px;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
}

.hero-title {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1e1e1e;
  background: #1e1e1e;
  color: #f6f3ef;
  font-size: 14px;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: #1e1e1e;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.badge {
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid #e2d6c8;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #ffffff;
}

.section-title {
  font-size: 30px;
  margin-bottom: 18px;
}

.highlight {
  background: #f0d9c2;
  padding: 20px;
  border-radius: 16px;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eee2d6;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
  background-color: #eadfd2;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.testimonial {
  background: #f9f4ef;
  border-radius: 16px;
  padding: 16px;
  flex: 1 1 200px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #eee2d6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d8cbbd;
  font-family: inherit;
  font-size: 14px;
}

.footer {
  padding: 40px 0 60px;
  background: #1e1e1e;
  color: #f6f3ef;
}

.footer a {
  color: #f6f3ef;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-column {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 12px;
  margin-top: 18px;
  color: #e7d9c8;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
}

.sticky-cta button {
  border-radius: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e2d6c8;
  padding: 14px 0;
  z-index: 12;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.contact-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #eee2d6;
}

@media (max-width: 920px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .hero-title {
    font-size: 34px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
