* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d2421;
  background: #f6f3ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  background: #f0ece4;
  border-bottom: 1px solid #e1dbd1;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 6vw;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.8px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a5a5a;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 6vw 48px;
  background: linear-gradient(130deg, rgba(246, 243, 238, 0.9), rgba(246, 243, 238, 0.6)),
    url("https://images.unsplash.com/photo-1518717758536-85ae29035b6d?w=1400&q=80") center/cover no-repeat;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  max-width: 760px;
}

.hero p {
  max-width: 620px;
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 30px;
  border: 1px solid #1d2421;
  font-size: 0.95rem;
  background: transparent;
  cursor: pointer;
}

.btn.primary {
  background: #1d2421;
  color: #f6f3ee;
}

.btn.secondary {
  background: #f6f3ee;
}

.mag-section {
  display: flex;
  gap: 32px;
  padding: 56px 6vw;
  align-items: stretch;
}

.mag-section.reverse {
  flex-direction: row-reverse;
}

.mag-section .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.column.card-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.image-frame {
  background-color: #d7d0c6;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  background: #1d2421;
  color: #f6f3ee;
  padding: 40px 6vw;
}

.feature-item {
  flex: 1;
  min-width: 220px;
}

.grid-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1;
  min-width: 230px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing {
  font-weight: 700;
  color: #1d2421;
}

.testimonial {
  background: #fef8f0;
  border-radius: 20px;
  padding: 22px;
  flex: 1;
  min-width: 220px;
}

.cta-inline {
  text-decoration: underline;
  color: #234c3c;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 16px 22px;
  border-radius: 16px;
  gap: 12px;
  flex-wrap: wrap;
}

.form-section {
  background: #e8efe8;
  padding: 54px 6vw;
}

.form-wrap {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  min-width: 260px;
}

label {
  font-size: 0.9rem;
}

select,
input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #b9c2b6;
  font-size: 0.95rem;
  width: 100%;
}

.form-note {
  font-size: 0.85rem;
  color: #45534e;
}

.aside-info {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

footer {
  background: #1d2421;
  color: #f6f3ee;
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d7d0c6;
  max-width: 820px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #234c3c;
  color: #f6f3ee;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: none;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
  z-index: 30;
}

.cookie-banner p {
  flex: 1;
  min-width: 220px;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.section-bg {
  background: linear-gradient(110deg, rgba(238, 232, 222, 0.85), rgba(238, 232, 222, 0.65)),
    url("https://images.unsplash.com/photo-1517849845537-4d257902454a?w=1400&q=80") center/cover no-repeat;
}

.care-background {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.7)),
    url("https://images.unsplash.com/photo-1508672019048-805c876b67e2?w=1400&q=80") center/cover no-repeat;
}

.wide-gap {
  gap: 40px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag {
  display: inline-block;
  background: #e7e0d6;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2f3a34;
}

@media (max-width: 900px) {
  .mag-section {
    flex-direction: column;
  }

  .mag-section.reverse {
    flex-direction: column;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
