* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d2428;
  background-color: #f7f5f1;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8%;
  border-bottom: 1px solid #d7d1c6;
  background: #f7f5f1;
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 12px;
  padding: 4px 10px;
  border: 1px solid #d09f64;
  color: #7c4a00;
  border-radius: 20px;
}

.hero {
  display: flex;
  gap: 40px;
  padding: 60px 8%;
  background: #f7f5f1;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 40px;
  margin: 0;
}

.hero-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-frame {
  background-color: #e6dfd2;
  padding: 8px;
  border-radius: 18px;
}

.image-frame img {
  border-radius: 14px;
}

.section {
  padding: 60px 8%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  gap: 28px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(26, 30, 35, 0.08);
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: #6b4c2f;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 26px;
  background: #1d2428;
  color: #f7f5f1;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.cta.secondary {
  background: #d09f64;
  color: #1d2428;
}

.cta.link {
  padding: 0;
  background: none;
  color: #7c4a00;
  border-radius: 0;
}

.sticky-cta {
  position: sticky;
  bottom: 20px;
  display: flex;
  justify-content: flex-end;
  padding: 0 8%;
  z-index: 2;
}

.sticky-cta .cta {
  box-shadow: 0 10px 24px rgba(26, 30, 35, 0.18);
}

.form {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.form label {
  font-size: 14px;
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7d1c6;
  font-size: 15px;
  font-family: inherit;
}

.form button {
  align-self: flex-start;
}

.bg-hero {
  background-color: #2d3a3f;
  background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 50px;
  color: #f7f5f1;
}

.bg-trust {
  background-color: #3a2f23;
  background-image: url("https://images.unsplash.com/photo-1497215728101-856f4ea42174?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 46px;
  color: #f7f5f1;
}

.footer {
  margin-top: auto;
  padding: 40px 8%;
  background: #1d2428;
  color: #f7f5f1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(26, 30, 35, 0.2);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.small {
  font-size: 13px;
  color: #566067;
}

.divider {
  height: 1px;
  background: #d7d1c6;
}

.legal-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
}

.text-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 960px) {
  .hero,
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    justify-content: center;
  }
}
