 :root {
   --bg: #f5f3f0;
   --ink: #1c1b1a;
   --muted: #5a5957;
   --accent: #c15b34;
   --accent-2: #1f6b75;
   --panel: #ffffff;
   --soft: #ece7e1;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   max-width: 1200px;
   margin: 0 auto;
   padding: 24px;
 }
 
 .nav {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   padding: 16px 24px;
   background: var(--panel);
   border-bottom: 1px solid var(--soft);
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .ad-label {
   font-size: 0.9rem;
   color: var(--muted);
   border: 1px solid var(--soft);
   padding: 6px 10px;
   border-radius: 999px;
   background: #faf8f6;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   align-items: stretch;
   gap: 0;
   background: var(--panel);
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
 }
 
 .hero .split-image {
   flex: 1 1 50%;
   min-height: 380px;
   background: #d8d2cb;
 }
 
 .hero .split-content {
   flex: 1 1 50%;
   padding: 48px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 0;
   background: var(--panel);
   border-radius: 16px;
   overflow: hidden;
   margin: 28px 0;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .split-image {
   flex: 1 1 50%;
   min-height: 300px;
   background: #ddd6ce;
 }

.bg-checkup {
  background-color: #d4cdc5;
  background-image: url("https://images.unsplash.com/photo-1471478331149-c72f17e33c73?w=800&q=80");
  background-size: cover;
  background-position: center;
}
 
 .split .split-content {
   flex: 1 1 50%;
   padding: 36px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .section {
   margin: 36px 0;
 }
 
 .badge {
   text-transform: uppercase;
   font-size: 0.8rem;
   letter-spacing: 0.08em;
   color: var(--accent-2);
 }
 
 .cta {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   background: var(--accent);
   color: #fff;
   border-radius: 12px;
   font-weight: 600;
 }
 
 .cta-outline {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .cta-sticky {
   position: fixed;
   right: 18px;
   bottom: 18px;
   padding: 12px 16px;
   background: var(--accent-2);
   color: #fff;
   border-radius: 999px;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .card {
   flex: 1 1 240px;
   background: #fbfaf8;
   border: 1px solid var(--soft);
   border-radius: 14px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
 }
 
 .card-image {
   height: 160px;
   background: #e1dad3;
 }
 
 .card-body {
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .form-panel {
   background: var(--panel);
   border-radius: 16px;
   padding: 28px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border: 1px solid #d8d2cb;
   border-radius: 10px;
   font-size: 1rem;
   background: #fff;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .footer {
   margin-top: 60px;
   padding: 32px 24px;
   background: #1f1e1c;
   color: #f5f2ee;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   margin-bottom: 14px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: #11100f;
   color: #f5f2ee;
   padding: 16px 20px;
   border-radius: 14px;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 12px;
   z-index: 10;
 }
 
 .banner button {
   padding: 8px 12px;
   border-radius: 10px;
   border: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn-accept {
   background: #f0c26b;
   color: #11100f;
 }
 
 .btn-reject {
   background: transparent;
   border: 1px solid #f0c26b;
   color: #f0c26b;
 }
 
 .two-column {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .two-column > div {
   flex: 1 1 280px;
 }
 
 .legal-box {
   background: #faf8f6;
   border-left: 4px solid var(--accent);
   padding: 16px;
   border-radius: 10px;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .banner.is-hidden {
   display: none;
 }
 
 @media (max-width: 860px) {
   .hero .split-content,
   .split .split-content {
     padding: 28px;
   }
 
   .cta-sticky {
     right: 12px;
     bottom: 12px;
   }
 }
