 :root {
   --bg: #f6f5f2;
   --text: #1a1a1a;
   --muted: #5b5b5b;
   --accent: #1f6b5b;
   --accent-2: #c97a2b;
   --panel: #ffffff;
   --line: #e2dfd8;
   --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   display: block;
   max-width: 100%;
   object-fit: cover;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 6vw;
   background: var(--panel);
   border-bottom: 1px solid var(--line);
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .ad-label {
   padding: 6px 10px;
   border: 1px solid var(--line);
   background: #faf7f0;
   font-size: 12px;
   color: var(--muted);
 }
 
 .hero {
   display: flex;
   gap: 40px;
   align-items: stretch;
   padding: 40px 6vw 20px;
 }
 
 .hero-card {
   flex: 1;
   background: var(--panel);
   padding: 28px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   justify-content: space-between;
 }
 
 .hero-image {
   flex: 1;
   background: #d9e0dc;
   box-shadow: var(--shadow);
   overflow: hidden;
 }
 
 .split {
   display: flex;
   gap: 40px;
   padding: 30px 6vw;
   align-items: center;
 }
 
 .bg-section {
   background-color: #d6dde1;
   background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .bg-section .split-panel {
   background: rgba(255, 255, 255, 0.92);
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split-panel {
   flex: 1;
   background: var(--panel);
   padding: 24px;
   box-shadow: var(--shadow);
 }
 
 .split-image {
   flex: 1;
   background: #dfe3e7;
   box-shadow: var(--shadow);
   overflow: hidden;
 }
 
 .badge {
   display: inline-block;
   padding: 6px 12px;
   border-radius: 20px;
   background: #e6efe9;
   color: var(--accent);
   font-size: 12px;
   letter-spacing: 0.6px;
 }
 
 .cta-row {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
   align-items: center;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #ffffff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
 }
 
 .inline-cta {
   font-weight: 600;
 }
 
 .services-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .service-card {
   display: flex;
   gap: 16px;
   background: var(--panel);
   padding: 16px;
   box-shadow: var(--shadow);
   align-items: center;
 }
 
 .img-wrap {
   background: #e4e0d6;
   border-radius: 10px;
   overflow: hidden;
   flex-shrink: 0;
 }
 
 .service-card img {
   width: 140px;
   height: 110px;
   border-radius: 10px;
 }
 
 .price {
   color: var(--accent-2);
   font-weight: 700;
 }
 
 .form-wrap {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .form-wrap label {
   font-weight: 600;
 }
 
 .form-wrap input,
 .form-wrap select,
 .form-wrap textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 8px;
   border: 1px solid var(--line);
   font-size: 15px;
 }
 
 .form-wrap button {
   border: none;
 }
 
 .footer {
   margin-top: auto;
   padding: 30px 6vw 40px;
   background: #1d2a27;
   color: #e8f0ee;
 }
 
 .footer a {
   color: #d9efe9;
 }
 
 .footer-cols {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   background: var(--accent);
   color: #ffffff;
   padding: 12px 16px;
   border-radius: 999px;
   box-shadow: var(--shadow);
   z-index: 10;
 }
 
 .cookie-banner {
   position: fixed;
   left: 18px;
   bottom: 18px;
   max-width: 380px;
   background: var(--panel);
   border: 1px solid var(--line);
   padding: 16px;
   box-shadow: var(--shadow);
   z-index: 12;
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 10px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .section-title {
   margin: 0 0 10px;
 }
 
 .notice {
   padding: 14px 16px;
   background: #fff5e8;
   border-left: 4px solid var(--accent-2);
 }
 
 .contact-block {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 @media (max-width: 980px) {
   .hero,
   .split {
     flex-direction: column;
   }
 
   .split.reverse {
     flex-direction: column;
   }
 
   .service-card {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .service-card img {
     width: 100%;
     height: 180px;
   }
 }
