* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a24;
  background: #f6f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

header {
  padding: 28px 6vw 18px;
  background: #f2efe8;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1 {
  font-size: 1.8rem;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  background: #1f2a24;
  color: #f6f4f0;
  padding: 6px 10px;
  border-radius: 20px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  padding: 80px 6vw 60px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: stretch;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80")
    center/cover no-repeat;
  opacity: 0.2;
}

.hero-content {
  position: relative;
  display: flex;
  flex: 1 1 360px;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: rgba(246, 244, 240, 0.95);
  border-radius: 18px;
}

.hero-card {
  position: relative;
  display: flex;
  flex: 1 1 320px;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: #1f2a24;
  color: #f6f4f0;
  border-radius: 18px;
  margin-top: 40px;
}

.hero-card img {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  background-color: #4a5a4f;
}

.primary-btn,
.outline-btn {
  border: none;
  border-radius: 28px;
  padding: 12px 22px;
  font-size: 1rem;
  cursor: pointer;
}

.primary-btn {
  background: #1f2a24;
  color: #f6f4f0;
}

.outline-btn {
  background: transparent;
  color: #1f2a24;
  border: 2px solid #1f2a24;
}

.split-section {
  padding: 70px 6vw;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.split-section.alt {
  background: #e6e1d6;
}

.split-text {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-image {
  flex: 1 1 320px;
  position: relative;
}

.split-image img {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  background-color: #c7c1b3;
}

.offset-box {
  padding: 28px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  margin-top: -40px;
}

.story-grid {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.story-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.story-row.reverse {
  flex-direction: row-reverse;
}

.story-row img {
  width: 320px;
  height: 220px;
  border-radius: 18px;
  background-color: #d0cbc0;
}

.story-copy {
  flex: 1 1 320px;
}

.trust-band {
  padding: 70px 6vw;
  background: #1f2a24;
  color: #f6f4f0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-line {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.trust-pill {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(246, 244, 240, 0.15);
}

.testimonial {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px;
  background: #f6f4f0;
  color: #1f2a24;
  border-radius: 18px;
}

.testimonial img {
  width: 160px;
  height: 160px;
  border-radius: 16px;
  background-color: #d2ccc2;
}

.pricing-section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.price-cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.price-card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background-color: #d6d0c6;
}

.form-wrap {
  padding: 70px 6vw 90px;
  background: #e6e1d6;
}

.form-shell {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch;
}

.form-info,
.form-box {
  flex: 1 1 320px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c1bcb2;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
}

.sticky-cta button {
  background: #d8a84e;
  color: #1f2a24;
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  cursor: pointer;
  font-weight: 600;
}

footer {
  padding: 60px 6vw;
  background: #1c241f;
  color: #f6f4f0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d9d3c7;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #1f2a24;
  color: #f6f4f0;
}

.cookie-actions .reject {
  background: #e6e1d6;
  color: #1f2a24;
}

.page-hero {
  padding: 60px 6vw 30px;
}

.page-section {
  padding: 40px 6vw 70px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.page-section img {
  width: 320px;
  height: 220px;
  border-radius: 16px;
  background-color: #d0cbc0;
}

.legal-block {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
