 :root {
   color-scheme: light;
   --ink: #1b1c1e;
   --muted: #5d6570;
   --accent: #2153d8;
   --accent-2: #f2b544;
   --bg: #f6f3ef;
   --paper: #ffffff;
   --shadow: 0 20px 50px rgba(10, 12, 18, 0.15);
 }

 * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }

 .page {
   width: min(1160px, 92vw);
   margin: 0 auto;
 }

 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 28px 0 16px;
   gap: 16px;
 }

 .nav-left {
   display: flex;
   align-items: baseline;
   gap: 18px;
 }

 .brand {
   font-size: 20px;
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }

 .ad-label {
   font-size: 12px;
   color: var(--muted);
   max-width: 240px;
 }

 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }

 .nav-link {
   padding: 6px 10px;
   border-radius: 999px;
   border: 1px solid transparent;
 }

 .nav-link:hover,
 .nav-link:focus {
   border-color: var(--ink);
 }

 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   align-items: stretch;
   margin: 24px 0 40px;
 }

 .hero-text {
   flex: 1 1 320px;
   background: var(--paper);
   padding: 38px;
   box-shadow: var(--shadow);
   position: relative;
 }

 .hero-text::after {
   content: "";
   position: absolute;
   right: -18px;
   bottom: -18px;
   width: 120px;
   height: 120px;
   background: var(--accent-2);
   z-index: -1;
 }

 .hero-image {
   flex: 1 1 360px;
   background: #d7d2ca;
   border-radius: 8px;
   overflow: hidden;
   min-height: 320px;
 }

 .hero h1 {
   margin: 0 0 12px;
   font-size: clamp(28px, 4vw, 44px);
 }

 .hero p {
   margin: 0 0 18px;
   color: var(--muted);
   font-size: 17px;
   line-height: 1.6;
 }

 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   align-items: center;
 }

 .btn {
   background: var(--accent);
   color: #fff;
   padding: 12px 20px;
   border-radius: 999px;
   border: none;
   cursor: pointer;
   font-weight: 600;
 }

 .btn.secondary {
   background: transparent;
   color: var(--ink);
   border: 1px solid var(--ink);
 }

 .btn:hover,
 .btn:focus {
   transform: translateY(-1px);
 }

 .section {
   margin: 60px 0;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }

 .section-title {
   display: flex;
   align-items: baseline;
   gap: 16px;
 }

 .section-title h2 {
   margin: 0;
   font-size: clamp(22px, 3vw, 32px);
 }

 .section-title span {
   color: var(--muted);
   font-size: 14px;
 }

 .offset-row {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: stretch;
 }

 .offset-card {
   flex: 1 1 300px;
   background: var(--paper);
   padding: 26px;
   box-shadow: var(--shadow);
 }

 .offset-card.highlight {
   background: #0c1f3a;
   color: #fff;
 }

 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }

 .service-card {
   flex: 1 1 240px;
   background: var(--paper);
   border-radius: 10px;
   overflow: hidden;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
 }

 .service-image {
   height: 160px;
   background: #d6dadf;
 }

 .service-body {
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
   flex: 1;
 }

 .service-body h3 {
   margin: 0;
   font-size: 18px;
 }

 .price {
   font-weight: 700;
   color: var(--accent);
 }

 .info-strip {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
   background: #e8eef6;
   padding: 24px;
 }

 .info-strip p {
   margin: 0;
   flex: 1 1 220px;
 }

 .form-panel {
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
   align-items: stretch;
 }

 .form-box {
   flex: 1 1 320px;
   background: var(--paper);
   padding: 26px;
   box-shadow: var(--shadow);
 }

 .form-box form {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .form-box label {
   font-weight: 600;
 }

 .form-box input,
 .form-box select,
 .form-box textarea {
   padding: 10px 12px;
   border-radius: 6px;
   border: 1px solid #c8cdd6;
   font-size: 15px;
   background: #fff;
 }

 .form-box textarea {
   min-height: 110px;
   resize: vertical;
 }

 .inline-link {
   color: var(--accent);
   text-decoration: underline;
 }

 .testimonial {
   background: var(--paper);
   padding: 20px;
   border-left: 4px solid var(--accent-2);
 }

 .footer {
   padding: 40px 0 80px;
   border-top: 1px solid #d6d2ca;
   color: var(--muted);
   font-size: 14px;
 }

 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 10px;
 }

 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   background: #0c1f3a;
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: var(--shadow);
   display: flex;
   align-items: center;
   gap: 12px;
   z-index: 10;
 }

 .sticky-cta button {
   background: var(--accent-2);
   color: #1b1c1e;
 }

 .image-row {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }

 .image-frame {
   flex: 1 1 240px;
   background: #cbc9c6;
   min-height: 200px;
   border-radius: 8px;
   overflow: hidden;
 }

 .legal {
   background: var(--paper);
   padding: 34px;
   box-shadow: var(--shadow);
   margin: 30px 0;
 }

 .cookie-banner {
   position: fixed;
   left: 0;
   right: 0;
   bottom: 0;
   background: #ffffff;
   border-top: 1px solid #d6d2ca;
   padding: 16px 24px;
   display: none;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   z-index: 12;
 }

 .cookie-actions {
   display: flex;
   gap: 10px;
 }

 .cookie-actions button {
   padding: 8px 14px;
   border-radius: 999px;
   border: 1px solid var(--ink);
   background: transparent;
   cursor: pointer;
 }

 .cookie-actions .accept {
   background: var(--accent);
   color: #fff;
   border-color: var(--accent);
 }

 @media (max-width: 720px) {
   .sticky-cta {
     left: 16px;
     right: 16px;
     justify-content: space-between;
   }
 }
