 :root {
   --bg: #0e1512;
   --surface: #151f1a;
   --muted: #d9e3dd;
   --accent: #2f7d4f;
   --accent-2: #8ac28a;
   --light: #f4f7f4;
   --dark: #0b100e;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--dark);
   background: var(--light);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   display: block;
   max-width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 .page {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
 }
 
 .site-header {
   padding: 24px 8%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: var(--light);
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .brand span {
   font-weight: 700;
   font-size: 1.1rem;
   letter-spacing: 1px;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: #3c4a41;
   border: 1px solid #c9d6cd;
   padding: 6px 10px;
   border-radius: 20px;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding: 6px 10px;
   border-radius: 16px;
   background: #e7efe9;
 }
 
 .hero {
   display: flex;
   gap: 40px;
   padding: 40px 8% 20px 8%;
   align-items: stretch;
 }
 
 .hero-copy {
   flex: 1.1;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .hero-visual {
   flex: 0.9;
   position: relative;
   background: #cfd8d1;
   border-radius: 28px;
   overflow: hidden;
 }
 
 .hero-visual img {
   width: 100%;
   height: 100%;
 }
 
 .hero-cta {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .btn {
   padding: 12px 20px;
   border-radius: 999px;
   border: none;
   cursor: pointer;
   font-weight: 600;
   background: var(--accent);
   color: #fff;
 }
 
 .btn.secondary {
   background: var(--dark);
 }
 
 .btn.ghost {
   background: transparent;
   border: 1px solid #325442;
   color: #325442;
 }
 
 .section {
   padding: 60px 8%;
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .section.dark {
   background: var(--bg);
   color: var(--muted);
 }
 
 .section.accent {
   background: #e8f1ea;
 }
 
.section.bg-image {
  background-image: linear-gradient(rgba(11, 16, 14, 0.82), rgba(11, 16, 14, 0.82)),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--muted);
}

 .asym-row {
   display: flex;
   gap: 30px;
   align-items: stretch;
 }
 
 .asym-row.reverse {
   flex-direction: row-reverse;
 }
 
 .asym-row .panel {
   flex: 1;
   background: #ffffff;
   border-radius: 24px;
   padding: 28px;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
 }
 
 .panel.highlight {
   background: #1c2a23;
   color: #e6f1ea;
 }
 
 .panel img {
   border-radius: 20px;
   width: 100%;
 }
 
 .offset-card {
   margin-left: 12%;
 }
 
 .service-grid {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .service-card {
   flex: 1 1 240px;
   background: #ffffff;
   border-radius: 20px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
 }
 
 .service-card .image-wrap {
   border-radius: 16px;
   overflow: hidden;
   background: #cad9ce;
 }
 
 .two-column {
   display: flex;
   gap: 28px;
 }
 
 .two-column .column {
   flex: 1;
 }
 
 .cta-inline {
   color: var(--accent);
   font-weight: 600;
   border-bottom: 1px solid var(--accent);
 }
 
 .form-wrap {
   display: flex;
   gap: 30px;
 }
 
 form {
   flex: 1;
   background: #fff;
   border-radius: 22px;
   padding: 28px;
   display: flex;
   flex-direction: column;
   gap: 16px;
   box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid #ccd7ce;
   font-size: 1rem;
 }
 
 .helper {
   font-size: 0.9rem;
   color: #4d5d52;
 }
 
 .form-error {
   color: #b02424;
   font-size: 0.9rem;
   display: none;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 20px;
   right: 24px;
   z-index: 10;
 }
 
 .site-footer {
   background: var(--surface);
   color: var(--muted);
   padding: 40px 8%;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .reference-list {
   font-size: 0.9rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   left: 20px;
   right: 20px;
   background: #0f1914;
   color: #e0e7e1;
   padding: 16px 18px;
   border-radius: 18px;
   display: flex;
   gap: 16px;
   align-items: center;
   justify-content: space-between;
   box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
 }
 
 .cookie-banner.hidden {
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .plain-card {
   background: #fff;
   padding: 24px;
   border-radius: 20px;
   box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
 }
 
 .legal-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .contact-details {
   display: flex;
   gap: 30px;
   flex-wrap: wrap;
 }
 
 .image-wrap {
   background: #cad9ce;
 }
 
 @media (max-width: 980px) {
   .hero,
   .asym-row,
   .two-column,
   .form-wrap {
     flex-direction: column;
   }
 
   .offset-card {
     margin-left: 0;
   }
 
   .sticky-cta {
     right: 12px;
     left: 12px;
   }
 }
