* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background: #f5f1ea;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: #2d2a26;
  color: #f7f3ee;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  line-height: 1.4;
  background: #4a443c;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  padding: 8px 10px;
  border-radius: 6px;
  background: #3a352f;
}

.nav a:hover {
  background: #534b42;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-cta a {
  background: #f2c57d;
  color: #2d2a26;
  padding: 12px 14px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

.sidebar-cta a:hover {
  background: #e5b869;
}

.content {
  flex: 1;
  padding: 40px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.7rem;
  max-width: 700px;
}

.hero p {
  max-width: 720px;
  font-size: 1.05rem;
}

.hero-image {
  background: #d9d0c2;
  border-radius: 16px;
  overflow: hidden;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 1.8rem;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split .media {
  flex: 1;
  background: #dcd2c5;
  border-radius: 14px;
  overflow: hidden;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card-image {
  background: #d9d0c2;
  border-radius: 10px;
  overflow: hidden;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 10px;
  background: #2d2a26;
  color: #f7f3ee;
  font-weight: 600;
}

.btn:hover {
  background: #1e1c19;
}

.btn-light {
  background: #f2c57d;
  color: #2d2a26;
}

.btn-light:hover {
  background: #e5b869;
}

.highlight {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: #efe8dd;
  border-radius: 12px;
}

.form-block {
  background: #ffffff;
  padding: 26px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-block label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-block select,
.form-block input,
.form-block textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfc5b9;
  font-size: 1rem;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 220px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  background: #2d2a26;
  color: #f7f3ee;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.sticky-cta:hover {
  background: #1f1c18;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: #4c4742;
  padding-top: 30px;
  border-top: 1px solid #d0c7bb;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-links a {
  background: #e9e2d7;
  padding: 6px 10px;
  border-radius: 8px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  width: min(90%, 520px);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #2d2a26;
  color: #f7f3ee;
}

.cookie-reject {
  background: #e9e2d7;
  color: #2d2a26;
}

.banner-visible {
  display: flex;
}

.note {
  font-size: 0.95rem;
  color: #4c4742;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .content {
    padding: 32px 24px 70px;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }
}
