/* IMPROVED SECTION STYLES */
.section-header {
    position: relative;
    width:  85%;
    height: 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary) 100%);
    color: white;
    padding: 15px 10px;
    margin: 35px 0 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--third-dark);
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--third-dark);
}

.section-header h3 {
    position: relative;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-header.benefits h3::before {
    font-size: 24px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.section-header.learning h3::before {
    font-size: 24px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header {
        padding: 15px 20px;
    }
    
    .section-header h3 {
        font-size: 18px;
    }
}