<style>
    :root { --brand-blue: #0d6efd; --text-dark: #212529; --text-muted: #6c757d; }
    
    .page-wrapper { padding: 50px 0; background-color: #f4f7f9; }
    .mentorship-card { background: #fff; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); padding: 40px; border: 1px solid #eef0f2; margin-bottom: 40px; }

    /* Branding & Pill */
    .header { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; }
    .logo-circle { width: 48px; height: 48px; background: var(--brand-blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; }
    .brand-name { font-weight: 800; font-size: 22px; color: var(--text-dark); line-height: 1; }
    .brand-tagline { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
    
    .pill { display: inline-flex; align-items: center; background: #e7f0ff; color: var(--brand-blue); padding: 6px 16px; border-radius: 50px; font-weight: 600; font-size: 13px; margin-bottom: 25px; }
    .pill-dot { width: 8px; height: 8px; background: var(--brand-blue); border-radius: 50%; margin-right: 10px; }

    /* Layout Sections */
    .layout { display: flex; gap: 40px; }
    .main-col { flex: 2; }
    .side-col { flex: 1; }

    .title { font-size: 34px; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; line-height: 1.2; }
    .subtitle { font-size: 16px; color: var(--text-muted); line-height: 1.6; margin-bottom: 30px; }

    .highlight-box { background: #f8faff; border-left: 4px solid var(--brand-blue); padding: 20px; display: flex; gap: 15px; border-radius: 0 10px 10px 0; margin-bottom: 30px; }
    .badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
    .badge-item { background: #f1f3f5; color: #495057; padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; border: 1px solid #dee2e6; }

    .feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
    .feature-card { border: 1px solid #f1f3f5; padding: 15px; border-radius: 12px; }
    .feature-label { font-size: 11px; text-transform: uppercase; color: #adb5bd; letter-spacing: 0.5px; font-weight: 700; }
    .feature-value { font-size: 14px; font-weight: 700; color: #343a40; margin-top: 4px; }

    /* Side Panel */
    .side-panel { background: #f9fafb; border-radius: 15px; padding: 25px; position: sticky; top: 20px; }
    .side-header { font-weight: 800; font-size: 18px; color: var(--text-dark); margin-bottom: 4px; }
    .mentor-list { list-style: none; padding: 0; margin-bottom: 25px; }
    .mentor-list li { border-bottom: 1px solid #edf2f7; padding: 12px 0; display: flex; flex-direction: column; gap: 6px; }
    .mentor-tag { font-size: 11px; color: var(--brand-blue); background: #fff; border: 1px solid #0d6efd; padding: 2px 8px; border-radius: 4px; align-self: flex-start; font-weight: 700; }

    .btn-apply { background: var(--brand-blue); color: #fff; padding: 12px 28px; border-radius: 8px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; }
    .btn-apply:hover { background: #0056b3; color: #fff; transform: translateY(-2px); }

    @media (max-width: 992px) {
      .layout { flex-direction: column; }
      .feature-grid { grid-template-columns: 1fr; }
    }
  </style>