 :root {
   color-scheme: light;
   --ink: #1b2a22;
   --muted: #58655c;
   --sage: #e8f0e6;
   --pine: #244134;
   --moss: #5f7f6d;
   --sand: #f3efe8;
   --fog: #f7f9f7;
   --accent: #2f7d5a;
   --accent-dark: #215943;
 }

 * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: var(--fog);
   line-height: 1.6;
 }

 img {
   max-width: 100%;
   display: block;
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 .page {
   width: min(1200px, 92vw);
   margin: 0 auto;
 }

 .nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 28px 0 10px;
 }

 .nav-links {
   display: flex;
   gap: 18px;
   font-size: 0.95rem;
 }

 .logo {
   font-weight: 600;
   letter-spacing: 0.04em;
 }

 .hero {
   margin-top: 20px;
   border-radius: 24px;
   overflow: hidden;
   background: linear-gradient(120deg, rgba(36, 65, 52, 0.85), rgba(47, 125, 90, 0.2)),
     url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1600&q=80")
       center/cover no-repeat;
   min-height: 440px;
   display: flex;
   align-items: stretch;
 }

 .hero-content {
   flex: 1;
   padding: 50px;
   background: rgba(255, 255, 255, 0.86);
   display: flex;
   flex-direction: column;
   gap: 18px;
 }

 .hero-title {
   font-size: clamp(2.2rem, 3vw, 3.1rem);
   line-height: 1.1;
 }

 .hero-cta {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   background: var(--accent);
   color: #fff;
   padding: 14px 26px;
   border-radius: 999px;
   font-weight: 600;
 }

 .split-section {
   display: flex;
   gap: 36px;
   align-items: center;
   padding: 70px 0;
 }

 .split-section.reverse {
   flex-direction: row-reverse;
 }

 .split-card {
   flex: 1;
 }

 .split-card h2 {
   font-size: clamp(1.6rem, 2.2vw, 2.2rem);
   margin-bottom: 12px;
 }

 .split-card p {
   color: var(--muted);
   margin-top: 0;
 }

 .split-panel {
   flex: 1;
   border-radius: 22px;
   overflow: hidden;
   background: var(--sage);
   padding: 18px;
 }

 .split-panel img {
   border-radius: 18px;
 }

 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin: 18px 0 0;
 }

 .pill {
   background: var(--sand);
   padding: 8px 16px;
   border-radius: 999px;
   font-size: 0.9rem;
 }

 .service-grid {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }

 .service-card {
   flex: 1 1 240px;
   background: #fff;
   border-radius: 18px;
   padding: 20px;
   box-shadow: 0 12px 30px rgba(28, 42, 34, 0.08);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .service-card img {
   border-radius: 14px;
   height: 150px;
   object-fit: cover;
 }

 .price {
   font-weight: 600;
   color: var(--accent-dark);
 }

 .service-action {
   margin-top: auto;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 10px 16px;
   border-radius: 999px;
   background: var(--pine);
   color: #fff;
   font-size: 0.9rem;
 }

 .form-shell {
   background: #fff;
   border-radius: 22px;
   padding: 28px;
   display: flex;
   flex-direction: column;
   gap: 16px;
   box-shadow: 0 20px 40px rgba(28, 42, 34, 0.1);
 }

 .form-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }

 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #d2d8d0;
   font-size: 1rem;
   font-family: inherit;
 }

 .submit-btn {
   padding: 14px 20px;
   border-radius: 12px;
   border: none;
   background: var(--accent);
   color: #fff;
   font-size: 1rem;
   cursor: pointer;
 }

 .split-banner {
   background: linear-gradient(120deg, #e1efe7, #fef7ec);
   border-radius: 22px;
   padding: 30px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 20px;
 }

 .split-banner a {
   background: #fff;
   border-radius: 999px;
   padding: 10px 18px;
   font-weight: 600;
 }

 .testimonial {
   background: #fff;
   border-left: 4px solid var(--accent);
   padding: 18px;
   border-radius: 12px;
   box-shadow: 0 12px 30px rgba(28, 42, 34, 0.08);
 }

 .footer {
   padding: 40px 0 60px;
   display: flex;
   justify-content: space-between;
   gap: 24px;
   flex-wrap: wrap;
   color: var(--muted);
 }

 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   background: var(--accent-dark);
   color: #fff;
   padding: 12px 20px;
   border-radius: 999px;
   box-shadow: 0 10px 25px rgba(26, 40, 31, 0.25);
   z-index: 30;
 }

 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: #fff;
   border-radius: 16px;
   padding: 16px 20px;
   display: none;
   align-items: center;
   justify-content: space-between;
   gap: 14px;
   box-shadow: 0 18px 40px rgba(28, 42, 34, 0.12);
   z-index: 50;
 }

 .cookie-actions {
   display: flex;
   gap: 10px;
 }

 .cookie-actions button {
   border: none;
   padding: 8px 14px;
   border-radius: 999px;
   cursor: pointer;
 }

 .btn-accept {
   background: var(--accent);
   color: #fff;
 }

 .btn-reject {
   background: #dbe4de;
   color: var(--ink);
 }

 .section-bg {
   background: var(--sage);
 }

 .section-dark {
   background: var(--pine);
   color: #fff;
 }

 .section-dark p {
   color: #e8efe8;
 }

 .meta-links {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }

 @media (max-width: 900px) {
   .split-section {
     flex-direction: column;
   }

   .split-section.reverse {
     flex-direction: column;
   }

   .nav {
     flex-direction: column;
     align-items: flex-start;
     gap: 12px;
   }

   .hero {
     flex-direction: column;
   }

   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
