 :root {
   --bg: #f4f3ef;
   --ink: #1f2421;
   --muted: #5c6a63;
   --accent: #2f6f62;
   --accent-strong: #214a42;
   --sand: #e6e0d6;
   --leaf: #cbd8c2;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent-strong);
   text-decoration: none;
 }
 
 .layout {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   width: 260px;
   background: #fff;
   border-right: 1px solid var(--sand);
   padding: 28px 22px;
   display: flex;
   flex-direction: column;
   gap: 22px;
 }
 
 .brand {
   font-size: 20px;
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .ad-label {
   background: var(--leaf);
   color: var(--accent-strong);
   padding: 8px 10px;
   font-size: 12px;
   border-radius: 10px;
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 10px;
   font-size: 15px;
 }
 
 .nav a {
   padding: 6px 0;
 }
 
 .sidebar .cta-side {
   margin-top: auto;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   border: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: var(--accent-strong);
 }
 
 .content {
   flex: 1;
   padding: 40px 6vw 80px;
 }
 
 header.page-intro {
   display: flex;
   flex-wrap: wrap;
   gap: 36px;
   align-items: stretch;
   margin-bottom: 40px;
 }
 
 .intro-text {
   flex: 1 1 320px;
   background: #fff;
   padding: 28px;
   border-radius: 24px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .intro-media {
   flex: 1 1 320px;
   position: relative;
   min-height: 280px;
   border-radius: 24px;
   overflow: hidden;
   background: var(--sand);
 }
 
 .intro-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 section {
   margin: 48px 0;
 }
 
 .section-header {
   display: flex;
   flex-direction: column;
   gap: 12px;
   max-width: 680px;
 }
 
 .story-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: stretch;
 }
 
 .story-card {
   flex: 1 1 240px;
   background: #fff;
   padding: 22px;
   border-radius: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .story-card img {
   width: 100%;
   height: 160px;
   object-fit: cover;
   border-radius: 16px;
   background: var(--sand);
 }
 
 .split-panel {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: center;
   background: #fff;
   border-radius: 28px;
   padding: 30px;
 }
 
 .split-panel .panel-text {
   flex: 1 1 320px;
 }
 
 .split-panel .panel-media {
   flex: 1 1 280px;
   min-height: 240px;
   border-radius: 20px;
   overflow: hidden;
   background: var(--leaf);
 }
 
 .split-panel .panel-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .numbers {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .number-box {
   flex: 1 1 200px;
   background: var(--sand);
   padding: 18px;
   border-radius: 16px;
 }
 
 .pricing-list {
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
 }
 
 .price-card {
   flex: 1 1 240px;
   background: #fff;
   border-radius: 20px;
   padding: 22px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-size: 22px;
   font-weight: 700;
   color: var(--accent-strong);
 }
 
 .testimonial {
   background: #fff;
   padding: 18px 20px;
   border-radius: 18px;
   flex: 1 1 260px;
 }
 
 .testimonial-row {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .form-wrap {
   background: var(--accent-strong);
   color: #fff;
   border-radius: 28px;
   padding: 30px;
 }
 
 .form-wrap form {
   display: flex;
   flex-direction: column;
   gap: 14px;
   max-width: 520px;
 }
 
 .form-wrap label {
   font-weight: 600;
 }
 
 .form-wrap input,
 .form-wrap select,
 .form-wrap textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: none;
   font-size: 15px;
 }
 
 .form-wrap .btn {
   align-self: flex-start;
   background: #fff;
   color: var(--accent-strong);
 }
 
 .inline-cta {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-weight: 600;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   background: #fff;
   border-radius: 999px;
   padding: 10px 14px;
   box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
   display: flex;
   gap: 10px;
   align-items: center;
   z-index: 10;
 }
 
 .sticky-cta a {
   font-weight: 600;
 }
 
 .footer {
   margin-top: 60px;
   padding-top: 30px;
   border-top: 1px solid var(--sand);
   display: flex;
   flex-direction: column;
   gap: 14px;
   color: var(--muted);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   background: #fff;
   border-radius: 18px;
   padding: 16px 18px;
   max-width: 320px;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-actions button {
   border: none;
   padding: 8px 12px;
   border-radius: 10px;
   background: var(--accent);
   color: #fff;
   cursor: pointer;
 }
 
 .cookie-actions button.secondary {
   background: var(--accent-strong);
 }
 
 .contact-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .contact-card {
   flex: 1 1 260px;
   background: #fff;
   padding: 22px;
   border-radius: 18px;
 }
 
 .legal-text {
   background: #fff;
   padding: 24px;
   border-radius: 18px;
 }
 
 .hero-quote {
   font-style: italic;
   color: var(--muted);
 }
 
 @media (max-width: 980px) {
   .layout {
     flex-direction: column;
   }
 
   .sidebar {
     width: 100%;
     border-right: none;
     border-bottom: 1px solid var(--sand);
     flex-direction: row;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
   }
 
   .sidebar .cta-side {
     flex-direction: row;
     margin-top: 0;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
