* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f2a2f;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 28px 22px;
  background: #f0e9df;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 12px;
  padding: 8px 10px;
  background: #f8d9c8;
  color: #5a2f1a;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 0;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main {
  flex: 1;
  padding: 34px 40px 80px;
  background: #fffdf8;
}

.section {
  margin-bottom: 42px;
  padding-bottom: 30px;
  border-bottom: 1px solid #efe6d8;
}

.section-title {
  font-size: 26px;
  margin: 0 0 12px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.hero h1 {
  font-size: 38px;
  margin: 0 0 14px;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-media {
  flex: 1 1 320px;
  min-width: 280px;
  background: #e4ded6;
  border-radius: 18px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.primary {
  background: #3c5b4c;
  color: #fff;
}

.btn.secondary {
  background: #f2f1ed;
  border-color: #b7a995;
}

.btn.ghost {
  border-color: #3c5b4c;
  color: #3c5b4c;
  background: transparent;
}

.split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.split .text {
  flex: 1 1 280px;
}

.image-wrap {
  flex: 1 1 280px;
  background: #e6e0d6;
  border-radius: 16px;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #f7f4ef;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  background-color: #e6e0d6;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f1e7d4;
  font-size: 14px;
}

.testimonial {
  padding: 16px;
  background: #f7f0e4;
  border-radius: 14px;
}

.pricing-note {
  background: #e6efe9;
  padding: 14px;
  border-radius: 12px;
}

.form-card {
  background: #f7f4ef;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card label {
  font-size: 14px;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #c8bca7;
  font-size: 15px;
  background: #fff;
}

.form-status {
  font-size: 14px;
  color: #3c5b4c;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #d6cbb7;
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-banner p {
  margin: 0 0 10px;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer a {
  text-decoration: underline;
}

.section-background {
  background: #f1eee7;
  padding: 24px;
  border-radius: 18px;
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1f2a2f;
}

.section-background .overlay {
  background: rgba(255, 255, 255, 0.86);
  padding: 18px;
  border-radius: 14px;
}

.small {
  font-size: 13px;
  color: #4f4a40;
}

.no-border {
  border-bottom: none;
  padding-bottom: 0;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-list p {
  margin: 0;
}

