 :root {
   --bg: #f6f7f4;
   --panel: #ffffff;
   --text: #1f2a24;
   --muted: #5b6a60;
   --accent: #1f7a4b;
   --accent-dark: #155a36;
   --line: #d9ded6;
   --sand: #eef2ec;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--text);
   background: var(--bg);
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:hover {
   color: var(--accent-dark);
 }
 
 .layout {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   width: 260px;
   padding: 28px 22px;
   background: var(--panel);
   border-right: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .brand {
   font-size: 1.3rem;
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   background: #f0f3ef;
   padding: 8px 10px;
   border-radius: 10px;
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .nav a {
   padding: 8px 10px;
   border-radius: 8px;
   background: #f7f8f6;
 }
 
 .nav a:hover {
   background: #e8eee7;
 }
 
 .sidebar .meta {
   font-size: 0.85rem;
   color: var(--muted);
   line-height: 1.4;
 }
 
 .content {
   flex: 1;
   display: flex;
   flex-direction: column;
 }
 
 .hero {
   background-image: url("https://images.unsplash.com/photo-XZP59dwklV4?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #f9fbf8;
   padding: 80px 60px;
   min-height: 320px;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   position: relative;
 }
 
 .hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(21, 42, 30, 0.55);
 }
 
 .hero .hero-content {
   position: relative;
   max-width: 620px;
 }
 
 .section {
   padding: 50px 60px;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .section.alt {
   background: var(--sand);
 }
 
 .split {
   display: flex;
   gap: 28px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .text {
   flex: 1 1 280px;
 }
 
 .split .media {
   flex: 1 1 260px;
   background: #dfe6df;
   border-radius: 16px;
   overflow: hidden;
 }
 
 .split .media img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .card-row {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .card {
   background: var(--panel);
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 18px;
   flex: 1 1 220px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card .media {
   background: #e2e9e1;
   border-radius: 12px;
   overflow: hidden;
 }
 
 .card .media img {
   width: 100%;
   height: 160px;
   object-fit: cover;
   display: block;
 }
 
 .cta-banner {
   background-image: url("https://images.unsplash.com/photo-jJntlyVvTjQ?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #f7fbf6;
   padding: 50px 60px;
   position: relative;
 }
 
 .cta-banner::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(28, 45, 35, 0.55);
 }
 
 .cta-banner .cta-content {
   position: relative;
   max-width: 560px;
 }
 
 .cta-button {
   display: inline-block;
   padding: 12px 20px;
   border-radius: 24px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
 }
 
 .cta-button:hover {
   background: var(--accent-dark);
 }
 
 .form-box {
   background: var(--panel);
   border-radius: 16px;
   padding: 24px;
   border: 1px solid var(--line);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 select,
 input,
 textarea {
   padding: 10px 12px;
   border-radius: 8px;
   border: 1px solid var(--line);
   font-size: 1rem;
 }
 
 button {
   padding: 12px 16px;
   border-radius: 10px;
   border: none;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 button:hover {
   background: var(--accent-dark);
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   padding: 12px 18px;
   background: #17261d;
   color: #fff;
   border-radius: 22px;
   z-index: 20;
 }
 
 .sticky-cta:hover {
   background: #0f1a13;
 }
 
 .footer {
   padding: 40px 60px;
   background: #1c2a22;
   color: #e6eee8;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .footer a {
   color: #c4efd2;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #ffffff;
   border: 1px solid var(--line);
   border-radius: 12px;
   padding: 16px;
   max-width: 360px;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-actions button {
   flex: 1;
 }
 
 .table {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .table-row {
   display: flex;
   justify-content: space-between;
   padding: 12px 14px;
   background: #f7f9f6;
   border-radius: 10px;
 }
 
 @media (max-width: 900px) {
   .layout {
     flex-direction: column;
   }
 
   .sidebar {
     width: 100%;
     border-right: none;
     border-bottom: 1px solid var(--line);
   }
 
   .hero,
   .section,
   .cta-banner,
   .footer {
     padding: 40px 24px;
   }
 
   .sticky-cta {
     right: 14px;
     bottom: 14px;
   }
 }
