 :root {
   --bg: #f7f4ef;
   --ink: #1f1f1f;
   --muted: #5c5c5c;
   --accent: #2b6f73;
   --accent-dark: #214f52;
   --card: #ffffff;
   --sand: #e9e1d6;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent-dark);
   text-decoration: none;
 }
 
 a:hover,
 a:focus {
   text-decoration: underline;
 }
 
 .page {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   flex: 0 0 260px;
   background: var(--sand);
   padding: 28px 22px;
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .brand {
   font-size: 20px;
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .ad-label {
   font-size: 12px;
   padding: 8px 10px;
   background: #fff3c9;
   border-radius: 6px;
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .nav-toggle {
   display: none;
   background: var(--accent);
   color: #fff;
   border: none;
   padding: 10px 12px;
   border-radius: 6px;
   cursor: pointer;
 }
 
 .content {
   flex: 1;
   padding: 32px 36px 80px;
   display: flex;
   flex-direction: column;
   gap: 32px;
 }
 
 .hero {
   display: flex;
   gap: 24px;
   align-items: stretch;
   background: var(--card);
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 }
 
 .hero-copy {
   flex: 1;
   padding: 32px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .hero-bg {
   flex: 1;
   background-color: #d7e2d9;
   background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
   background-size: cover;
   background-position: center;
   min-height: 320px;
 }
 
 .section {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .section.reversed {
   flex-direction: row-reverse;
 }
 
 .flex-block {
   flex: 1 1 320px;
 }
 
 .section-title {
   font-size: 26px;
   margin: 0 0 10px;
 }
 
 .note {
   color: var(--muted);
 }
 
 .image-frame {
   background: #e5e5e5;
   border-radius: 14px;
   overflow: hidden;
   flex: 1 1 280px;
   min-width: 240px;
 }
 
 .image-frame img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .card-row {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .card {
   background: var(--card);
   border-radius: 14px;
   padding: 18px;
   flex: 1 1 220px;
   display: flex;
   flex-direction: column;
   gap: 10px;
   box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
 }
 
 .card img {
   width: 100%;
   height: 180px;
   object-fit: cover;
   border-radius: 10px;
 }
 
 .cta-button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   background: var(--accent);
   color: #fff;
   border: none;
   padding: 12px 18px;
   border-radius: 8px;
   cursor: pointer;
   font-weight: 600;
 }
 
 .cta-button:hover,
 .cta-button:focus {
   background: var(--accent-dark);
 }
 
 .cta-inline {
   font-weight: 600;
 }
 
 .inspiration-bg {
   background-color: #cfd8e3;
   background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80");
   background-size: cover;
   background-position: center;
   padding: 28px;
   border-radius: 16px;
   color: #fff;
 }
 
 .pricing {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .price-line {
   display: flex;
   justify-content: space-between;
   gap: 12px;
   border-bottom: 1px solid #e0ded9;
   padding-bottom: 8px;
 }
 
 .form-box {
   background: var(--card);
   border-radius: 16px;
   padding: 22px;
   display: flex;
   flex-direction: column;
   gap: 14px;
   box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
 }
 
 .form-box label {
   font-weight: 600;
 }
 
 .form-box input,
 .form-box select,
 .form-box textarea {
   padding: 10px;
   border-radius: 8px;
   border: 1px solid #cfcfcf;
   font-size: 16px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   background: #111;
   color: #fff;
   padding: 12px 16px;
   border-radius: 999px;
   font-size: 14px;
 }
 
 .footer {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding-top: 24px;
   border-top: 1px solid #e0ded9;
   font-size: 14px;
 }
 
 .footer-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   background: #ffffff;
   border-radius: 14px;
   padding: 16px;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
   max-width: 320px;
   display: none;
   flex-direction: column;
   gap: 10px;
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .cookie-actions button {
   flex: 1;
 }
 
 @media (max-width: 960px) {
   .page {
     flex-direction: column;
   }
 
   .sidebar {
     flex: none;
   }
 
   .nav {
     display: none;
   }
 
   .nav.open {
     display: flex;
   }
 
   .nav-toggle {
     display: inline-flex;
   }
 
   .hero {
     flex-direction: column;
   }
 }
