 :root {
   color-scheme: light;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: #1b1d22;
   background-color: #f6f4f0;
   line-height: 1.6;
 }
 
 a {
   color: #1b5c9a;
   text-decoration: none;
 }
 
 a:focus {
   outline: 2px solid #1b5c9a;
   outline-offset: 2px;
 }
 
 .layout {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   display: flex;
   flex-direction: column;
   gap: 24px;
   width: 280px;
   background-color: #11151c;
   color: #f7f7f7;
   padding: 28px 24px;
 }
 
 .brand {
   font-size: 1.4rem;
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: uppercase;
 }
 
 .ad-label {
   font-size: 0.85rem;
   background-color: #f3c04b;
   color: #151515;
   padding: 8px 10px;
   border-radius: 6px;
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .nav a {
   color: #f0f0f0;
   font-size: 0.95rem;
 }
 
 .nav a.active {
   font-weight: 700;
 }
 
 .sidebar-footer {
   margin-top: auto;
   font-size: 0.85rem;
   color: #c7c7c7;
 }
 
 .content {
   flex: 1;
   display: flex;
   flex-direction: column;
 }
 
 .hero {
   background-color: #d9e1ea;
   background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
   background-size: cover;
   background-position: center;
   padding: 72px 8vw;
   color: #0f151f;
   min-height: 420px;
   display: flex;
   align-items: flex-end;
 }
 
 .hero-inner {
   background-color: rgba(255, 255, 255, 0.9);
   padding: 28px 32px;
   max-width: 560px;
   border-radius: 12px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .hero-inner h1 {
   font-size: 2.4rem;
   line-height: 1.2;
 }
 
 .hero-inner p {
   font-size: 1.05rem;
 }
 
 .button {
   background-color: #1b5c9a;
   color: #ffffff;
   border: none;
   border-radius: 8px;
   padding: 12px 18px;
   cursor: pointer;
   font-weight: 600;
   width: fit-content;
 }
 
 .button.secondary {
   background-color: #e8edf4;
   color: #142033;
 }
 
 .section {
   padding: 56px 8vw;
   display: flex;
   flex-direction: column;
   gap: 24px;
   background-color: #ffffff;
 }
 
 .section.alt {
   background-color: #f0efe9;
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .text {
   flex: 1 1 320px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .split .visual {
   flex: 1 1 320px;
 }
 
 .image-frame {
   background-color: #d8dde5;
   border-radius: 12px;
   overflow: hidden;
 }
 
 .image-frame img {
   width: 100%;
   height: auto;
   display: block;
   object-fit: cover;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 240px;
   background-color: #ffffff;
   border-radius: 12px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
 }
 
 .card img {
   width: 100%;
   height: 160px;
   object-fit: cover;
   border-radius: 10px;
 }
 
 .pill-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .pill {
   padding: 8px 14px;
   background-color: #e8edf4;
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 .pricing-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .pricing-item {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   justify-content: space-between;
   align-items: center;
   padding: 16px 18px;
   border-radius: 10px;
   background-color: #f8f7f3;
 }
 
 .pricing-item strong {
   font-size: 1.05rem;
 }
 
 .cta-strip {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
   justify-content: space-between;
   background-color: #11151c;
   color: #ffffff;
   padding: 28px 8vw;
 }
 
 .cta-strip a {
   color: #f7e6b1;
 }
 
 .form-section {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 16px;
   max-width: 520px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 8px;
   border: 1px solid #c7c7c7;
   font-size: 1rem;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .form-hint {
   font-size: 0.9rem;
   color: #4b4f57;
 }
 
 .form-actions {
   display: flex;
   gap: 12px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   z-index: 10;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
 }
 
 .footer {
   padding: 40px 8vw;
   background-color: #11151c;
   color: #e4e4e4;
   display: flex;
   flex-direction: column;
   gap: 14px;
   font-size: 0.9rem;
 }
 
 .footer a {
   color: #d7c48d;
 }
 
 .legal-list {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   background-color: #ffffff;
   border-radius: 12px;
   padding: 18px;
   max-width: 320px;
   box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 12;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
 }
 
 .page-hero {
   padding: 42px 8vw;
   background-color: #e2e6ef;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .page-hero img {
   width: 100%;
   height: 240px;
   object-fit: cover;
   border-radius: 12px;
 }
 
 .info-block {
   display: flex;
   flex-direction: column;
   gap: 12px;
   max-width: 720px;
 }
 
 .table-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .table-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   justify-content: space-between;
   padding: 12px 16px;
   border-radius: 10px;
   background-color: #f7f7f1;
 }
 
 @media (max-width: 960px) {
   .layout {
     flex-direction: column;
   }
 
   .sidebar {
     width: 100%;
     flex-direction: row;
     flex-wrap: wrap;
     align-items: center;
   }
 
   .sidebar-footer {
     margin-top: 0;
   }
 
   .hero {
     padding: 48px 6vw;
   }
 }
