 :root {
   --bg: #f7f5f2;
   --ink: #1b1b1b;
   --muted: #565656;
   --accent: #1f5f7a;
   --accent-dark: #124054;
   --surface: #ffffff;
   --soft: #e9e4dc;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 header {
   background: var(--surface);
   border-bottom: 1px solid #ded8cf;
 }
 
 .nav-wrap {
   max-width: 1200px;
   margin: 0 auto;
   padding: 18px 24px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 18px;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   font-weight: 600;
   letter-spacing: 0.5px;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   max-width: 280px;
 }
 
 nav {
   display: flex;
   align-items: center;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 nav a {
   font-size: 0.95rem;
 }
 
 main {
   max-width: 1200px;
   margin: 0 auto;
   padding: 40px 24px 80px;
   display: flex;
   flex-direction: column;
   gap: 56px;
 }
 
 .split {
   display: flex;
   gap: 28px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .text {
   flex: 1;
 }
 
 .split .visual {
   flex: 1;
 }
 
 .hero {
   background: var(--surface);
   padding: 28px;
   border-radius: 18px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
 }
 
 .hero h1 {
   margin-top: 0;
   font-size: 2.4rem;
 }
 
 .cta-row {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   margin-top: 18px;
 }
 
 .btn {
   background: var(--accent);
   color: #fff;
   border: none;
   padding: 12px 20px;
   border-radius: 30px;
   cursor: pointer;
   font-size: 0.98rem;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .image-card {
   background: #dfe6ea;
   border-radius: 14px;
   overflow: hidden;
 }
 
 .image-card img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
.hero-img {
  height: 360px;
}

.section-img {
  height: 300px;
}

.card-img {
  height: 150px;
}

 .details-strip {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
   background: var(--surface);
   padding: 24px;
   border-radius: 18px;
 }
 
 .details-strip .detail {
   flex: 1 1 220px;
   background: var(--soft);
   padding: 16px;
   border-radius: 12px;
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .service-card {
   flex: 1 1 220px;
   background: var(--surface);
   border-radius: 16px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
 }
 
 .service-card .content {
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .tag {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .panel-bg {
   background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
   background-size: cover;
   background-position: center;
   border-radius: 18px;
   padding: 36px;
   color: #fff;
 }
 
 .panel-bg .inner {
   background: rgba(0, 0, 0, 0.55);
   padding: 24px;
   border-radius: 14px;
 }
 
 .testimonial {
   font-style: italic;
   background: var(--soft);
   padding: 16px;
   border-radius: 12px;
 }
 
 .form-shell {
   background: var(--surface);
   padding: 28px;
   border-radius: 18px;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .service-select {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .service-select button {
   padding: 10px 16px;
   border-radius: 24px;
   border: 1px solid #cdd1d4;
   background: #fff;
   cursor: pointer;
 }
 
 .service-select button.active {
   border-color: var(--accent);
   color: var(--accent);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid #cfd3d6;
   font-size: 0.95rem;
 }
 
 footer {
   background: #151515;
   color: #f3f3f3;
   padding: 36px 24px;
 }
 
 footer .footer-wrap {
   max-width: 1200px;
   margin: 0 auto;
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: flex-start;
 }
 
 footer a {
   color: #d6eef9;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 18px;
   right: 18px;
   background: var(--accent-dark);
   color: #fff;
   padding: 12px 18px;
   border-radius: 30px;
   display: flex;
   align-items: center;
   gap: 8px;
   box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
   z-index: 9;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: var(--surface);
   border: 1px solid #d7d3cc;
   padding: 16px;
   border-radius: 12px;
   max-width: 320px;
   z-index: 10;
   box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-hidden {
   display: none;
 }
 
 .simple-hero {
   display: flex;
   gap: 24px;
   align-items: center;
   background: var(--surface);
   padding: 24px;
   border-radius: 18px;
 }
 
 .simple-hero h1 {
   margin-top: 0;
 }
 
 .legal-block {
   background: var(--surface);
   padding: 24px;
   border-radius: 16px;
 }
 
 .two-column {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .two-column > div {
   flex: 1 1 260px;
 }
 
 @media (max-width: 900px) {
   .split,
   .simple-hero {
     flex-direction: column;
   }
 
   .sticky-cta {
     right: 50%;
     transform: translateX(50%);
   }
 }
