 :root {
   --bg: #f7f5f1;
   --ink: #1f2328;
   --muted: #5b6672;
   --accent: #2f6f8f;
   --accent-dark: #24556d;
   --sand: #efe6d8;
   --paper: #ffffff;
   --outline: #e2d8c9;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:hover,
 a:focus {
   color: var(--accent-dark);
 }
 
 .layout {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   width: 260px;
   background: var(--paper);
   border-right: 1px solid var(--outline);
   padding: 32px 22px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .brand {
   font-size: 22px;
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .ad-label {
   font-size: 12px;
   text-transform: uppercase;
   color: var(--muted);
   border: 1px solid var(--outline);
   padding: 6px 10px;
   width: fit-content;
   background: var(--sand);
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .nav a {
   padding: 6px 0;
   font-weight: 600;
 }
 
 .sidebar-note {
   font-size: 14px;
   color: var(--muted);
 }
 
 .sidebar-cta {
   margin-top: auto;
   padding: 16px;
   background: var(--sand);
   border-radius: 14px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   border: none;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn:hover,
 .btn:focus {
   background: var(--accent-dark);
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .btn.secondary:hover,
 .btn.secondary:focus {
   color: #fff;
 }
 
 .main {
   flex: 1;
   padding: 40px 60px 120px;
   display: flex;
   flex-direction: column;
   gap: 40px;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: center;
 }
 
 .hero-content {
   flex: 1 1 320px;
 }
 
 .hero-media {
   flex: 1 1 320px;
   border-radius: 24px;
   overflow: hidden;
   background: #d7dde3;
 }
 
 .hero-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .section {
   background: var(--paper);
   border-radius: 24px;
   padding: 28px;
   border: 1px solid var(--outline);
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .text {
   flex: 1 1 280px;
 }
 
 .split .image-wrap {
   flex: 1 1 280px;
   border-radius: 20px;
   overflow: hidden;
   background: #cfd7d9;
 }
 
 .split img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 220px;
   border-radius: 18px;
   border: 1px solid var(--outline);
   background: var(--paper);
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card .image-wrap {
   border-radius: 14px;
   overflow: hidden;
   background: #d8dce0;
 }
 
 .card img {
   width: 100%;
   height: 180px;
   object-fit: cover;
   display: block;
 }
 
 .price {
   font-size: 20px;
   font-weight: 700;
 }
 
 .highlight-band {
   background: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80") center/cover no-repeat;
   border-radius: 26px;
   padding: 32px;
   color: #fff;
   display: flex;
   flex-direction: column;
   gap: 16px;
   min-height: 220px;
 }
 
 .highlight-overlay {
   background: rgba(0, 0, 0, 0.55);
   padding: 22px;
   border-radius: 18px;
 }
 
 .form-section {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 label {
   font-weight: 600;
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid var(--outline);
   font-size: 15px;
   font-family: inherit;
 }
 
 .form-status {
   font-size: 14px;
   color: var(--muted);
 }
 
 .footer {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   padding-top: 20px;
   border-top: 1px solid var(--outline);
   color: var(--muted);
 }
 
 .footer a:hover,
 .footer a:focus {
   color: var(--accent-dark);
 }
 
 .disclaimer {
   font-size: 13px;
 }
 
 .cta-bar {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #1f2328;
   color: #fff;
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   justify-content: center;
   padding: 12px 16px;
   z-index: 10;
 }
 
 .cta-bar .btn {
   background: #fff;
   color: #1f2328;
 }
 
 .cta-bar .btn:hover,
 .cta-bar .btn:focus {
   background: #d9dde2;
 }
 
 .cookie-banner {
   position: fixed;
   right: 20px;
   bottom: 80px;
   max-width: 320px;
   background: var(--paper);
   border: 1px solid var(--outline);
   border-radius: 16px;
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 11;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .page-hero {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: center;
 }
 
 .page-hero .image-wrap {
   flex: 1 1 280px;
   border-radius: 20px;
   overflow: hidden;
   background: #cbd2da;
 }
 
 .page-hero img {
   width: 100%;
   height: 240px;
   object-fit: cover;
   display: block;
 }
 
 .page-content {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .service-table {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .service-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   justify-content: space-between;
   padding: 14px 18px;
   border-radius: 14px;
   background: var(--sand);
 }
 
 .contact-details {
   display: flex;
   flex-direction: column;
   gap: 8px;
   font-weight: 600;
 }
 
 @media (max-width: 960px) {
   .layout {
     flex-direction: column;
   }
 
   .sidebar {
     width: 100%;
     flex-direction: row;
     flex-wrap: wrap;
     align-items: center;
     gap: 12px;
   }
 
   .nav {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .main {
     padding: 30px 24px 140px;
   }
 }
