 :root {
   --bg: #f7f4ef;
   --ink: #243028;
   --muted: #5b6b5e;
   --accent: #3c6b4f;
   --accent-soft: #dbe7dd;
   --sand: #efe7d8;
   --olive: #c9d5c1;
   --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: var(--bg);
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:focus,
 button:focus,
 select:focus,
 input:focus,
 textarea:focus {
   outline: 2px solid var(--accent);
   outline-offset: 2px;
 }
 
 .layout {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   width: 260px;
   background: #ffffff;
   border-right: 1px solid #e4e0d9;
   padding: 24px 20px;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .brand {
   font-size: 1.4rem;
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   background: var(--sand);
   padding: 10px 12px;
   border-radius: 10px;
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .nav a {
   padding: 8px 10px;
   border-radius: 10px;
 }
 
 .nav a:hover,
 .nav a:focus {
   background: var(--accent-soft);
 }
 
 .sidebar-note {
   font-size: 0.85rem;
   color: var(--muted);
   line-height: 1.5;
 }
 
 .content {
   flex: 1;
   padding: 40px 6vw 80px;
   display: flex;
   flex-direction: column;
   gap: 48px;
 }
 
 .hero {
   display: flex;
   gap: 24px;
   align-items: stretch;
   background: #ffffff;
   border-radius: 24px;
   overflow: hidden;
   box-shadow: var(--shadow);
 }
 
 .hero-text {
   flex: 1;
   padding: 36px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .hero-text h1 {
   margin: 0;
   font-size: 2.4rem;
 }
 
 .hero-text p {
   margin: 0;
   color: var(--muted);
   line-height: 1.6;
 }
 
 .hero-media {
   flex: 1;
   background: #d9e3d2;
 }
 
 .hero-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   background: #dfe7dc;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .button {
   border: none;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   cursor: pointer;
   font-weight: 600;
 }
 
 .button.secondary {
   background: var(--sand);
   color: var(--ink);
 }
 
 .button:hover,
 .button:focus {
   opacity: 0.92;
 }
 
 .section {
   display: flex;
   gap: 28px;
   align-items: center;
 }
 
 .section.reverse {
   flex-direction: row-reverse;
 }
 
 .section.center {
   flex-direction: column;
   text-align: center;
   background: var(--olive);
   padding: 28px;
   border-radius: 20px;
 }
 
 .section .text {
   flex: 1;
 }
 
 .section h2 {
   margin-top: 0;
 }
 
 .section p {
   color: var(--muted);
   line-height: 1.6;
 }
 
 .image-frame {
   flex: 1;
   background: #dfe7dc;
   border-radius: 18px;
   overflow: hidden;
   min-height: 220px;
 }
 
 .image-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   background: #dfe7dc;
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .service-card {
   flex: 1 1 240px;
   background: #ffffff;
   border-radius: 18px;
   padding: 18px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .service-card img {
   width: 100%;
   height: 160px;
   object-fit: cover;
   border-radius: 14px;
   display: block;
   background: #dfe7dc;
 }
 
 .service-price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .note-block {
   background: #ffffff;
   border-radius: 20px;
   padding: 24px;
   box-shadow: var(--shadow);
 }
 
 .form-wrap {
   background: #ffffff;
   border-radius: 22px;
   padding: 26px;
   box-shadow: var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 label {
   font-weight: 600;
 }
 
 select,
 input,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #d5d8d1;
   font-size: 1rem;
 }
 
 textarea {
   min-height: 90px;
 }
 
 .inline-link {
   font-weight: 600;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background: var(--accent);
   color: #fff;
   border-radius: 999px;
   padding: 12px 18px;
   border: none;
   cursor: pointer;
   box-shadow: var(--shadow);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #ffffff;
   border-top: 1px solid #e1ddd5;
   padding: 16px 20px;
   display: flex;
   gap: 16px;
   align-items: center;
   justify-content: space-between;
   z-index: 5;
 }
 
 .cookie-banner.hidden {
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .footer {
   border-top: 1px solid #e3e0d9;
   padding-top: 20px;
   color: var(--muted);
   font-size: 0.9rem;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .legal-box {
   background: var(--sand);
   padding: 16px;
   border-radius: 14px;
 }
 
 @media (max-width: 980px) {
   .layout {
     flex-direction: column;
   }
 
   .sidebar {
     width: 100%;
     flex-direction: row;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
   }
 
   .nav {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .hero {
     flex-direction: column;
   }
 
   .section,
   .section.reverse {
     flex-direction: column;
   }
 
   .sticky-cta {
     right: 12px;
     left: 12px;
     text-align: center;
   }
 }
