 :root {
   --bg: #f5f4f1;
   --ink: #1f2a33;
   --muted: #5b6770;
   --accent: #0c5a6a;
   --accent-soft: #d8eef2;
   --warm: #f1e7da;
   --gold: #b48a3a;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
 }
 
 img {
   display: block;
   width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .top-bar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 6vw;
   background: #ffffff;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.6px;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   font-size: 14px;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
 }
 
 .hero {
   position: relative;
   display: flex;
   flex-direction: column;
   gap: 24px;
   padding: 80px 6vw 60px;
  background-color: #1b2a33;
   background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #ffffff;
 }
 
 .hero::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(15, 24, 32, 0.62);
 }
 
 .hero-content {
   position: relative;
   z-index: 1;
   max-width: 600px;
 }
 
 .hero h1 {
   font-size: 42px;
   margin: 0 0 16px;
 }
 
 .hero p {
   font-size: 18px;
   margin: 0 0 24px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: none;
   background: var(--gold);
   color: #1d1a12;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn-secondary {
   background: #ffffff;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .section {
   padding: 70px 6vw;
 }
 
 .split-asymm {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: center;
 }
 
 .split-asymm.reverse {
   flex-direction: row-reverse;
 }
 
 .split-text {
   flex: 1 1 320px;
 }
 
 .split-media {
   flex: 1 1 320px;
   background: var(--warm);
   padding: 18px;
 }
 
 .offset-card {
   background: #ffffff;
   padding: 28px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
   border-radius: 20px;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .card {
   flex: 1 1 220px;
   background: #ffffff;
   border-radius: 18px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   min-width: 220px;
 }
 
 .card-body {
   padding: 18px 20px 22px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .layered {
  background-color: #1f2b33;
   background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #ffffff;
   position: relative;
 }
 
 .layered::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(9, 19, 25, 0.68);
 }
 
 .layered-content {
   position: relative;
   z-index: 1;
   display: flex;
   flex-direction: column;
   gap: 16px;
   max-width: 620px;
 }
 
 .process-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .process-step {
   flex: 1 1 200px;
   background: #ffffff;
   border-radius: 16px;
   padding: 18px;
 }
 
 .form-wrap {
   background: var(--accent-soft);
   border-radius: 24px;
   padding: 28px;
 }
 
 .form-group {
   display: flex;
   flex-direction: column;
   gap: 6px;
   margin-bottom: 14px;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #c8d3da;
   font-size: 14px;
   font-family: inherit;
 }
 
 .footer {
   background: #101820;
   color: #d5dde3;
   padding: 30px 6vw 40px;
   margin-top: auto;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 12px;
   font-size: 14px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   background: var(--accent);
   color: #ffffff;
   padding: 12px 18px;
   border-radius: 999px;
   border: none;
   font-weight: 600;
   cursor: pointer;
   z-index: 10;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   bottom: 16px;
   background: #ffffff;
   color: var(--ink);
   padding: 18px;
   border-radius: 16px;
   box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
   max-width: 320px;
   z-index: 12;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .legal-hero {
   background: #ffffff;
   padding: 50px 6vw 30px;
 }
 
 .legal-body {
   padding: 20px 6vw 50px;
   background: #fdfbf7;
 }
 
 .image-banner {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
   align-items: center;
 }
 
 .image-box {
   flex: 1 1 280px;
   background: #e6ecef;
   padding: 10px;
   border-radius: 18px;
 }
 
 .contact-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .contact-card {
   flex: 1 1 240px;
   background: #ffffff;
   border-radius: 18px;
   padding: 22px;
 }
 
 .service-highlight {
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
 }
 
 .service-block {
   flex: 1 1 240px;
   background: #ffffff;
   border-radius: 18px;
   padding: 18px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 @media (max-width: 720px) {
   .top-bar {
     flex-direction: column;
     gap: 12px;
   }
 
   .hero h1 {
     font-size: 34px;
   }
 }
