/* Cultural Education Styling */

.cultural-highlight {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-left: 4px solid #ffd700;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.cultural-highlight h6 {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.cultural-highlight p {
    color: #e0e0e0;
    margin-bottom: 0;
    line-height: 1.6;
}

.resistance-module {
    border: 2px solid #dc3545;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
}

.urban-innovation-module {
    border: 2px solid #17a2b8;
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.1) 0%, rgba(23, 162, 184, 0.05) 100%);
}

.cultural-respect-module {
    border: 2px solid #e83e8c;
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.1) 0%, rgba(232, 62, 140, 0.05) 100%);
}

.education-module-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.education-module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.lesson-content h5 {
    color: #ffd700;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.lesson-content h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.lesson-content ul {
    list-style: none;
    padding-left: 0;
}

.lesson-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.lesson-content ul li:before {
    content: "✊";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-weight: bold;
}

.quiz-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid #ffd700;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.quiz-options .form-check-label {
    color: #e0e0e0;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.quiz-options .form-check-label:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.quiz-explanation {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(40, 167, 69, 0.1) 100%);
    border-left: 4px solid #28a745;
    padding: 1rem;
    border-radius: 4px;
    color: #e0e0e0;
}

.module-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a1a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.progress-indicator {
    height: 4px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
}

.progress-indicator .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700 0%, #ffed4a 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}