* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d1f23;
  background: #f6f4f0;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background: #f0ded4;
  border-radius: 999px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 32px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.split-media {
  background: #e5e1d9;
  padding: 12px;
}

.hero-title {
  font-size: 2.4rem;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  background: #1d1f23;
  color: #fefaf4;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1d1f23;
  color: #1d1f23;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e6ebf2;
  font-size: 0.85rem;
}

.card-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #ece7df;
}

.card-media {
  background: #e8e2d8;
  border-radius: 10px;
  overflow: hidden;
}

.highlight {
  background: #f4efe7;
  border-radius: 16px;
  padding: 24px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #e0d9cf;
  padding-bottom: 12px;
}

.form-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #ece7df;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cfc7bd;
  font-size: 1rem;
}

.footer {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: #4a4b50;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #1d1f23;
  color: #fefaf4;
  padding: 18px;
  border-radius: 12px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.sticky-cta {
  position: sticky;
  top: 12px;
  align-self: flex-start;
  background: #1d1f23;
  color: #fefaf4;
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.inline-image {
  background: #e9e0d4;
  padding: 10px;
  border-radius: 12px;
}

.bg-1 { background-color: #e4dfd5; }
.bg-2 { background-color: #e6e0d6; }
.bg-3 { background-color: #e8e1d6; }
.bg-4 { background-color: #e2dbd1; }
.bg-5 { background-color: #e7dfd4; }
.bg-6 { background-color: #e5e1d9; }

.section-title {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.note {
  font-size: 0.9rem;
  color: #5a5e63;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
