 :root {
   --bg: #f6f4f1;
   --ink: #1e1f22;
   --muted: #555c66;
   --accent: #2b6d63;
   --accent-2: #8b5e3c;
   --card: #ffffff;
   --line: #e2e0db;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 .page {
   max-width: 1200px;
   margin: 0 auto;
   padding: 32px 24px 80px;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   padding: 20px 24px;
   background: #ffffff;
   border-bottom: 1px solid var(--line);
 }
 
 .nav-left {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .brand {
   font-size: 20px;
   font-weight: 700;
 }
 
 .ad-label {
   font-size: 13px;
   color: var(--muted);
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   font-size: 15px;
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: stretch;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split-col {
   flex: 1 1 320px;
   min-width: 280px;
 }
 
 .hero {
   padding: 40px 0 20px;
 }
 
 .hero h1 {
   font-size: 42px;
   line-height: 1.15;
   margin-bottom: 16px;
 }
 
 .lead {
   font-size: 18px;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: #ffffff;
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .btn-secondary {
   background: var(--accent-2);
 }
 
 .btn-outline {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section-title {
   font-size: 30px;
   margin-bottom: 12px;
 }
 
 .img-frame {
   background: #d9d4cc;
   border-radius: 18px;
   overflow: hidden;
   min-height: 260px;
 }
 
 .inline-img {
   margin-top: 18px;
   max-width: 320px;
 }
 
 .stat-block {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .stat {
   background: #ffffff;
   border-radius: 16px;
   padding: 16px 18px;
   border: 1px solid var(--line);
   min-width: 160px;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-card {
   display: flex;
   gap: 18px;
   background: #ffffff;
   border-radius: 18px;
   padding: 18px;
   border: 1px solid var(--line);
   align-items: center;
 }
 
 .service-img {
   width: 120px;
   height: 90px;
   flex: 0 0 auto;
   border-radius: 14px;
   overflow: hidden;
   background: #d3ccc1;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .bg-surface {
   background: #ffffff;
   border-radius: 24px;
   padding: 28px;
   border: 1px solid var(--line);
 }
 
 .top-spacing {
   margin-top: 20px;
 }
 
 .bg-one {
   background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1400&q=80");
   background-size: cover;
   background-position: center;
   position: relative;
   color: #ffffff;
 }
 
 .bg-one::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(22, 28, 26, 0.72);
 }
 
 .bg-one .bg-content {
   position: relative;
   z-index: 1;
 }
 
 .bg-two {
   background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=80");
   background-size: cover;
   background-position: center;
   position: relative;
   color: #ffffff;
 }
 
 .bg-two::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(32, 22, 12, 0.68);
 }
 
 .bg-two .bg-content {
   position: relative;
   z-index: 1;
 }
 
 .form-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 input,
 select,
 textarea {
   padding: 12px;
   border-radius: 10px;
   border: 1px solid var(--line);
   font-size: 15px;
 }
 
 .form-note {
   min-height: 20px;
   color: var(--accent-2);
   font-weight: 600;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 24px;
   z-index: 10;
 }
 
 .footer {
   margin-top: 40px;
   padding: 32px 24px;
   background: #ffffff;
   border-top: 1px solid var(--line);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 14px;
 }
 
 .disclaimer {
   margin-top: 16px;
   font-size: 13px;
   color: var(--muted);
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: #ffffff;
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   display: none;
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   margin-top: 12px;
 }
 
 .page-hero {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: center;
 }
 
 .page-hero h1 {
   font-size: 34px;
   margin-bottom: 12px;
 }
 
 .info-card {
   background: #ffffff;
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 20px;
 }
 
 @media (max-width: 760px) {
   .hero h1 {
     font-size: 34px;
   }
   .nav {
     flex-direction: column;
     align-items: flex-start;
   }
 }
