    .sap-edu-detail { padding: 80px 0; background-color: #ffffff; }
    .sap-edu-container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
    .sap-edu-layout { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 60px; align-items: start; }

    /* LOGO VE META STİLLERİ */
    .sap-edu-header-meta { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
    .sap-mod-logo-wrap {
        width: 60px; height: 60px;
        background: #f8f9fa;
        border-radius: 12px;
        padding: 10px;
        border: 1px solid #eee;
        display: flex; align-items: center; justify-content: center;
    }
    .sap-mod-logo-wrap img { max-width: 100%; height: auto; }
    .sap-detail-badge { color: #C5A059; font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; }

    /* TAB NAVİGASYON (RESPONSIVE DESTEKLİ) */
    .sap-tabs-nav { 
        display: flex; gap: 30px; border-bottom: 2px solid #f0f0f0; margin-bottom: 40px;
        overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch;
    }
    .sap-tabs-nav::-webkit-scrollbar { display: none; }
    .sap-tab-btn {
        background: none !important; border: none !important; padding: 15px 0 !important;
        font-size: 16px !important; font-weight: 700 !important; color: #999 !important;
        cursor: pointer; position: relative; transition: 0.3s;
    }
    .sap-tab-btn.active { color: #0B2135 !important; }
    .sap-tab-btn.active::after {
        content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 2px; background-color: #C5A059;
    }

    /* İÇERİK */
    .sap-detail-title { color: #0B2135 !important; font-size: 44px !important; font-weight: 800 !important; margin-bottom: 30px !important; }
    .sap-tab-content { display: none; animation: fadeIn 0.4s ease; }
    .sap-tab-content.active { display: block; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

    /* SIDEBAR STICKY (KORUNDU) */
    .sap-edu-sidebar { position: sticky; top: 120px; }
    .sap-info-card { background: #0B2135; color: #fff; padding: 40px; border-radius: 15px; }
    .sap-btn-enroll { display: block; background: #C5A059 !important; color: #fff !important; text-align: center; padding: 16px; border-radius: 6px; text-decoration: none !important; font-weight: 800; text-transform: uppercase; transition: 0.3s; }

    /* MOBİL UYUMLULUK */
    @media (max-width: 991px) {
        .sap-edu-layout { grid-template-columns: 1fr; }
        .sap-edu-sidebar { position: static; margin-top: 50px; }
        .sap-detail-title { font-size: 32px !important; }
        .sap-edu-header-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
    }
