 :root {
   --ink: #1f2a2e;
   --muted: #526168;
   --bg: #f6f4ef;
   --panel: #ffffff;
   --accent: #3b6e6a;
   --accent-2: #d4b04c;
   --edge: #d9d4c8;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 .layout {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   width: 260px;
   padding: 28px 22px;
   background: #f1eee7;
   border-right: 1px solid var(--edge);
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .brand {
   font-weight: 700;
   font-size: 20px;
   letter-spacing: 0.3px;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
   background: #ece6d9;
   padding: 8px 10px;
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .nav a {
   font-size: 14px;
 }
 
 .sticky-cta {
   margin-top: 12px;
   padding: 12px 14px;
   background: var(--accent);
   color: #fff;
   text-align: center;
   border-radius: 8px;
   position: sticky;
   top: 18px;
 }
 
 .content {
   flex: 1;
   padding: 36px 48px 70px;
   display: flex;
   flex-direction: column;
   gap: 36px;
 }
 
 .hero {
   display: flex;
   gap: 28px;
   align-items: center;
   background: var(--panel);
   padding: 26px;
   border-radius: 18px;
 }
 
 .hero-text {
   flex: 1;
 }
 
 .hero h1 {
   margin: 0 0 12px;
   font-size: 36px;
 }
 
 .hero p {
   margin: 0 0 18px;
   color: var(--muted);
   line-height: 1.6;
 }
 
 .img-wrap {
   background: #dcd7cc;
   border-radius: 16px;
   overflow: hidden;
 }
 
 .img-wrap img {
   display: block;
   width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 .hero-img {
   flex: 0 0 42%;
 }
 
 .section {
   display: flex;
   gap: 26px;
 }
 
 .section.block {
   background: var(--panel);
   border-radius: 18px;
   padding: 22px;
 }
 
 .section .text {
   flex: 1;
 }
 
 .section .text h2 {
   margin: 0 0 10px;
   font-size: 24px;
 }
 
 .section .text p {
   margin: 0 0 12px;
   color: var(--muted);
   line-height: 1.6;
 }
 
 .bg-mentors {
   background-image: url("https://images.unsplash.com/photo-1504386106331-3e4e71712b38?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #fff;
   padding: 32px;
   border-radius: 18px;
 }
 
 .bg-mentors .overlay {
   background: rgba(0, 0, 0, 0.55);
   padding: 22px;
   border-radius: 14px;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .card {
   background: var(--panel);
   border-radius: 16px;
   padding: 16px;
   flex: 1 1 240px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .card h3 {
   margin: 0;
   font-size: 18px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .cta-row {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .cta-row a {
   padding: 10px 14px;
   border-radius: 8px;
   background: #e9efe9;
 }
 
 .cta-primary {
   background: var(--accent);
   color: #fff;
 }
 
 .form-wrap {
   background: var(--panel);
   border-radius: 18px;
   padding: 24px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 14px;
   color: var(--muted);
 }
 
 select,
 input,
 textarea {
   padding: 10px;
   border-radius: 8px;
   border: 1px solid var(--edge);
   font-size: 14px;
 }
 
 .submit-btn {
   background: var(--accent);
   color: #fff;
   border: none;
   padding: 12px 16px;
   border-radius: 8px;
   font-size: 15px;
 }
 
 .footer {
   display: flex;
   flex-direction: column;
   gap: 12px;
   font-size: 13px;
   color: var(--muted);
 }
 
 .footer .links {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 18px;
   right: 18px;
   background: #fff;
   border: 1px solid var(--edge);
   padding: 16px;
   border-radius: 12px;
   max-width: 320px;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
 }
 
 .cookie-banner p {
   margin: 0 0 12px;
   font-size: 13px;
   color: var(--muted);
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .cookie-actions button {
   padding: 8px 10px;
   border-radius: 8px;
   border: none;
   background: #eef0ef;
   font-size: 13px;
 }
 
 .cookie-actions .accept {
   background: var(--accent-2);
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .list-item {
   padding: 12px 14px;
   background: var(--panel);
   border-radius: 12px;
 }
 
 @media (max-width: 980px) {
   .layout {
     flex-direction: column;
   }
 
   .sidebar {
     width: 100%;
     flex-direction: row;
     flex-wrap: wrap;
     position: static;
     border-right: none;
     border-bottom: 1px solid var(--edge);
   }
 
   .content {
     padding: 28px;
   }
 
   .hero {
     flex-direction: column;
   }
 
   .section {
     flex-direction: column;
   }
 }
