/* --- CUSTOM COURSE PAGE STYLES (ID: 8200) --- */
.course-8200 .course-main-banner {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.course-8200 .section-header i {
    color: #007bff;
}

.suitability-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.suitability-box h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.highlight-item {
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #edf2f7;
}

.highlight-item i {
    display: block;
    font-size: 24px;
    color: #3182ce;
    margin-bottom: 10px;
}

.highlight-item span {
    font-size: 13px;
    font-weight: 700;
    color: #4a5568;
}

/* Lessons List */
.lessons-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lesson-item {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s;
}

.lesson-item:hover {
    border-color: #3182ce;
    background: #f0f7ff;
    transform: translateX(-5px);
}

.lesson-num {
    width: 30px;
    height: 30px;
    background: #edf2f7;
    color: #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    margin-left: 15px;
}

.lesson-title {
    flex: 1;
    font-weight: 600;
    color: #2d3748;
    font-size: 15px;
}

.lesson-badge {
    font-size: 12px;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Download Guides */
.download-guides {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.guide-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.guide-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.guide-info i {
    font-size: 30px;
    color: #4a5568;
}

.guide-info span {
    font-weight: 700;
    font-size: 14px;
}

.btn-download {
    background: #4a5568;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-download:hover {
    background: #2d3748;
}

@media (max-width: 768px) {
    .feature-highlights, .download-guides {
        grid-template-columns: 1fr;
    }
}
