 :root {
   color-scheme: light;
   --ink: #1f2a1f;
   --muted: #4b5a4b;
   --accent: #2e6b47;
   --accent-soft: #e7f1e7;
   --paper: #f7f6f2;
   --sand: #efe8dc;
   --leaf: #d6ead4;
   --shadow: 0 18px 40px rgba(26, 45, 26, 0.12);
 }

 * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }

 img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 a {
   color: var(--accent);
   text-decoration: none;
 }

 a:hover,
 a:focus {
   text-decoration: underline;
 }

 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }

 .topbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 24px 6vw;
   gap: 20px;
   background: #fff;
 }

 .brand {
   display: flex;
   flex-direction: column;
   gap: 4px;
 }

 .brand .name {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   font-size: 14px;
 }

 .brand .tagline {
   font-size: 13px;
   color: var(--muted);
 }

 .ad-label {
   font-size: 12px;
   padding: 6px 10px;
   border: 1px solid var(--accent);
   border-radius: 999px;
   color: var(--accent);
   background: #fff;
 }

 .nav {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
 }

 .nav a {
   font-size: 14px;
   letter-spacing: 0.04em;
 }

 .main {
   flex: 1;
 }

 .section {
   padding: 64px 6vw;
 }

 .section.alt {
   background: var(--sand);
 }

 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 40px;
   align-items: center;
 }

 .split.reverse {
   flex-direction: row-reverse;
 }

 .panel {
   flex: 1 1 320px;
   min-width: 0;
 }

 .panel h1,
 .panel h2,
 .panel h3 {
   margin: 0 0 16px;
 }

 .panel p {
   margin: 0 0 16px;
   color: var(--muted);
 }

 .hero-image,
 .feature-image,
 .trust-image,
 .legal-image,
 .about-image,
 .services-image,
 .contact-image {
   min-height: 320px;
   border-radius: 18px;
   overflow: hidden;
   background-color: var(--leaf);
   box-shadow: var(--shadow);
 }

 .hero-image {
   background-image: url("https://images.unsplash.com/photo-0w4roHbD0Ug?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }

 .feature-image {
   background-image: url("https://images.unsplash.com/photo-PZpltFc5R70?w=800&q=80");
   background-size: cover;
   background-position: center;
 }

 .trust-image {
   background-image: url("https://images.unsplash.com/photo-28GXhMVzAIA?w=800&q=80");
   background-size: cover;
   background-position: center;
 }

 .legal-image {
   background-image: url("https://images.unsplash.com/photo-1jHDKU760lQ?w=800&q=80");
   background-size: cover;
   background-position: center;
 }

 .about-image {
   background-image: url("https://images.unsplash.com/photo-8QnXGk_b5iI?w=800&q=80");
   background-size: cover;
   background-position: center;
 }

 .services-image {
   background-image: url("https://images.unsplash.com/photo-VXAQopDiGfY?w=800&q=80");
   background-size: cover;
   background-position: center;
 }

 .contact-image {
   background-image: url("https://images.unsplash.com/photo-vTzJ8wUykwY?w=800&q=80");
   background-size: cover;
   background-position: center;
 }

 .card-row {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }

 .card {
   flex: 1 1 220px;
   min-width: 220px;
   background: #fff;
   border-radius: 16px;
   overflow: hidden;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
 }

 .card .card-media {
   height: 180px;
   background-color: var(--leaf);
 }

 .card .card-body {
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }

 .price {
   font-weight: 700;
   color: var(--accent);
 }

 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
 }

 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #fff;
   cursor: pointer;
   font-size: 14px;
 }

 .btn.secondary {
   background: transparent;
   color: var(--accent);
 }

 .btn:hover,
 .btn:focus {
   filter: brightness(0.96);
 }

 .inline-cta {
   font-weight: 600;
 }

 .form-wrap {
   background: #fff;
   border-radius: 18px;
   padding: 28px;
   box-shadow: var(--shadow);
 }

 form {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 label {
   font-size: 13px;
   color: var(--muted);
 }

 input,
 select,
 textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid #d7d9d7;
   font-size: 14px;
   font-family: inherit;
 }

 textarea {
   min-height: 120px;
   resize: vertical;
 }

 .meta {
   font-size: 13px;
   color: var(--muted);
 }

 .sticky-cta {
   position: fixed;
   right: 22px;
   bottom: 22px;
   background: var(--accent);
   color: #fff;
   border: none;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: var(--shadow);
   cursor: pointer;
   font-size: 13px;
 }

 .sticky-cta:hover,
 .sticky-cta:focus {
   filter: brightness(0.96);
 }

 .footer {
   background: #fff;
   padding: 40px 6vw;
   display: flex;
   flex-direction: column;
   gap: 18px;
   font-size: 14px;
 }

 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }

 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   max-width: 320px;
   background: #fff;
   border-radius: 16px;
   padding: 16px;
   box-shadow: var(--shadow);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 10;
 }

 .cookie-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }

 .notice {
   background: var(--accent-soft);
   padding: 18px;
   border-radius: 14px;
 }

 .image-inline {
   height: 240px;
   border-radius: 16px;
   overflow: hidden;
   background-color: var(--leaf);
   box-shadow: var(--shadow);
 }

 .image-inline img {
   object-fit: cover;
 }

 .legal-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }

 .info-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }

 .info-box {
   flex: 1 1 220px;
   background: #fff;
   border-radius: 14px;
   padding: 18px;
   box-shadow: var(--shadow);
 }

 .info-box strong {
   display: block;
   margin-bottom: 8px;
 }

 @media (max-width: 760px) {
   .topbar {
     flex-direction: column;
     align-items: flex-start;
   }

   .sticky-cta {
     right: 16px;
     left: 16px;
     text-align: center;
   }
 }
