 :root {
   --bg: #f7f5f2;
   --ink: #1f1f1f;
   --muted: #5b5b5b;
   --accent: #1c6b5a;
   --accent-2: #243b6b;
   --warm: #efe7dd;
   --cool: #e7eef7;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   color: var(--ink);
   background: var(--bg);
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 header {
   padding: 24px 7%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   background: white;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .nav-group {
   display: flex;
   align-items: center;
   gap: 18px;
   font-size: 14px;
 }
 
 .ad-label {
   padding: 6px 10px;
   border: 1px solid var(--ink);
   font-size: 12px;
 }
 
 .hero {
   display: flex;
   align-items: stretch;
   padding: 0 7% 40px;
   gap: 28px;
 }
 
 .hero-text,
 .hero-media {
   flex: 1;
 }
 
 .hero-text {
   padding: 40px 0;
 }
 
 .hero-text h1 {
   font-size: 40px;
   margin: 0 0 16px;
 }
 
 .hero-text p {
   color: var(--muted);
   font-size: 18px;
   line-height: 1.6;
 }
 
 .cta-row {
   display: flex;
   gap: 14px;
   margin-top: 22px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 24px;
   border: 1px solid var(--ink);
   background: var(--accent);
   color: white;
   font-size: 14px;
   cursor: pointer;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--ink);
 }
 
 .hero-media {
   background: #d7e1ef;
   border-radius: 24px;
   overflow: hidden;
   display: flex;
 }

.bg-soft {
  background: #f1efe9;
}

.bg-sky {
  background: #e4ecf5;
}

.bg-warm {
  background: #f4eadd;
}

.bg-cool {
  background: #f0f4f8;
}

.bg-sage {
  background: #e9efe3;
}

.bg-form {
  background: #dfe9df;
}

.card-cream {
  background: #fff5ec;
}

.card-mint {
  background: #eef6f2;
}

.card-slate {
  background: #eef1f7;
}

.bg-peach {
  background: #f6f1ea;
}

.bg-ice {
  background: #e7eef7;
}

.bg-ivory {
  background: #efe7dd;
}

.bg-ice-light {
  background: #eef3f7;
}

.bg-ice-dark {
  background: #e5ecef;
}

.bg-sand {
  background: #fdf7f0;
}

.bg-sand-dark {
  background: #f1e7dc;
}

.bg-stone {
  background: #f4f0ea;
}

.bg-mist {
  background: #e8eff6;
}
 
 .hero-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
  background: #d7e1ef;
 }
 
 section {
   padding: 48px 7%;
 }
 
 .split {
   display: flex;
   gap: 28px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .panel {
   flex: 1;
 }
 
 .panel h2 {
   font-size: 28px;
   margin: 0 0 12px;
 }
 
 .panel p {
   color: var(--muted);
   line-height: 1.6;
 }
 
 .panel ul {
   padding-left: 18px;
   color: var(--muted);
   line-height: 1.6;
 }
 
 .panel img {
   width: 100%;
   height: 320px;
   object-fit: cover;
   border-radius: 18px;
  background: #e4ecf5;
 }
 
 .cards {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 240px;
   background: white;
   border-radius: 18px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .card img {
   width: 100%;
   height: 160px;
   object-fit: cover;
   border-radius: 14px;
  background: #e9efe3;
 }
 
 .pricing {
   background: var(--warm);
 }
 
 .pricing .card {
   border: 1px solid #e0d8cf;
 }
 
 .testimonial {
   background: var(--cool);
   border-radius: 18px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .form-wrap {
   display: flex;
   gap: 26px;
   align-items: stretch;
 }
 
 form {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 12px;
   background: white;
   padding: 22px;
   border-radius: 18px;
 }
 
 label {
   font-size: 14px;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 8px;
   border: 1px solid #c9c9c9;
   font-size: 14px;
   font-family: inherit;
 }
 
 .form-media {
   flex: 1;
   background: #dfe9df;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .form-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
  background: #dfe9df;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background: var(--accent-2);
   color: white;
   padding: 12px 18px;
   border-radius: 999px;
   font-size: 14px;
 }
 
 footer {
   padding: 32px 7%;
   background: #111;
   color: white;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 14px;
 }
 
 .disclaimer {
   font-size: 12px;
   color: #cfcfcf;
   line-height: 1.5;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: white;
   border-top: 1px solid #ddd;
   padding: 16px 7%;
   display: none;
   gap: 16px;
   align-items: center;
   justify-content: space-between;
   z-index: 10;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .page-hero {
   padding: 40px 7% 20px;
 }
 
 .page-hero h1 {
   font-size: 34px;
   margin-bottom: 10px;
 }
 
 .page-hero p {
   color: var(--muted);
   line-height: 1.6;
 }
 
 .simple-section {
   padding: 24px 7%;
 }
 
 .simple-section h2 {
   margin-top: 0;
 }
 
 @media (max-width: 900px) {
   header {
     flex-direction: column;
     align-items: flex-start;
     gap: 12px;
   }
 
   .hero,
   .split,
   .form-wrap {
     flex-direction: column;
   }
 
   .hero-text h1 {
     font-size: 32px;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
