 :root {
   color-scheme: light;
   --bg: #f7f5f1;
   --ink: #1f2a24;
   --muted: #5a6a63;
   --accent: #2d6a4f;
   --accent-soft: #d7efe2;
   --sand: #efe7da;
   --card: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
 }
 
 img {
   display: block;
   max-width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   padding: 24px 0 8px;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   font-size: 0.95rem;
 }
 
 .ad-label {
   font-size: 0.8rem;
   background: var(--sand);
   padding: 6px 12px;
   border-radius: 999px;
 }
 
 .section {
   padding: 70px 0;
 }
 
 .section-title {
   font-size: 2rem;
   margin: 0 0 18px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .split {
   display: flex;
   gap: 40px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .hero {
   background: var(--sand);
 }
 
 .hero h1 {
   font-size: 2.6rem;
   margin-bottom: 14px;
 }
 
 .hero p {
   font-size: 1.1rem;
 }
 
 .image-wrap {
   flex: 1;
   background: var(--accent-soft);
   padding: 12px;
   border-radius: 18px;
 }
 
 .image-wrap img {
   width: 100%;
   height: 360px;
   border-radius: 12px;
 }
 
 .accent-block {
   background: var(--accent-soft);
   padding: 32px;
   border-radius: 20px;
 }
 
 .card-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--card);
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
   display: flex;
   flex-direction: column;
 }
 
 .card img {
   width: 100%;
   height: 180px;
   object-fit: cover;
 }
 
 .card-body {
   padding: 20px;
 }
 
 .price {
   font-weight: 600;
   margin-top: 10px;
 }
 
 .btn {
   background: var(--accent);
   color: #fff;
   border: none;
   padding: 12px 18px;
   border-radius: 999px;
   cursor: pointer;
   font-size: 0.95rem;
 }
 
 .btn-light {
   background: #fff;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .inline-link {
   color: var(--accent);
   text-decoration: underline;
 }
 
 .bg-vision {
   background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #f7f8f5;
 }
 
 .bg-overlay {
   background: rgba(31, 42, 36, 0.78);
   padding: 50px;
   border-radius: 20px;
 }
 
 .form-wrap {
   background: var(--card);
   padding: 28px;
   border-radius: 20px;
   box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px;
   border-radius: 10px;
   border: 1px solid #d6d2c9;
   font-size: 0.95rem;
   background: #fff;
 }
 
 .testimonial {
   background: var(--sand);
   padding: 20px;
   border-radius: 16px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   background: var(--card);
   padding: 14px 16px;
   border-radius: 16px;
   box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
   max-width: 220px;
 }
 
 .sticky-cta p {
   margin: 0 0 10px;
   font-size: 0.9rem;
 }
 
 .footer {
   background: #1f2a24;
   color: #f5f4f0;
   padding: 48px 0;
 }
 
 .footer a {
   color: inherit;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 14px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: #fff;
   padding: 18px;
   border-radius: 14px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
   display: none;
   z-index: 10;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   margin-top: 12px;
 }
 
 .page-hero {
   background: var(--sand);
   padding: 40px 0;
 }
 
 .legal-block {
   background: var(--card);
   padding: 24px;
   border-radius: 16px;
   margin-bottom: 18px;
 }
 
 @media (max-width: 900px) {
   .split {
     flex-direction: column;
   }
 
   .nav {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .sticky-cta {
     position: static;
     margin: 20px auto 0;
   }
 }
